:root {
  --bg: #020d15;
  --bg-soft: #071923;
  --panel: rgba(7, 27, 39, 0.78);
  --panel-strong: rgba(3, 20, 30, 0.92);
  --line: rgba(151, 196, 214, 0.28);
  --line-bright: rgba(95, 232, 255, 0.36);
  --text: #f6fbfd;
  --muted: #b4c2c9;
  --cyan: #2bd3ed;
  --cyan-2: #23bad9;
  --orange: #ff7b22;
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #22c9e3 #020d15;
}

section,
footer {
  scroll-margin-top: 110px;
}

html::-webkit-scrollbar {
  width: 11px;
}

html::-webkit-scrollbar-track {
  background: #020d15;
}

html::-webkit-scrollbar-thumb {
  min-height: 70px;
  border: 3px solid #020d15;
  border-radius: 999px;
  background: linear-gradient(180deg, #38dcef 0%, #18abc8 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), 0 0 12px rgba(34, 207, 231, .35);
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #64e9f7 0%, #24c7e1 100%);
}

html::-webkit-scrollbar-thumb:active {
  background: #17b7d2;
}

html::-webkit-scrollbar-corner {
  background: #020d15;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #03111a;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #f6fbfd;
  background:
    radial-gradient(circle at 50% 48%, rgba(21, 127, 151, .18), transparent 35%),
    linear-gradient(135deg, #020b12 0%, #041823 52%, #020d15 100%);
  cursor: wait;
}

.site-preloader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 5px, rgba(255, 255, 255, .012) 5px 6px);
  opacity: .55;
}

.site-preloader__canvas,
.site-preloader__glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site-preloader__canvas {
  z-index: 1;
}

.site-preloader__glow {
  left: 50%;
  top: 50%;
  width: min(620px, 88vw);
  height: min(280px, 42vw);
  border: 1px solid rgba(43, 211, 237, .08);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(43, 211, 237, .08), transparent 68%);
  filter: blur(1px);
  transform: translate(-50%, -50%);
  animation: preloader-glow-pulse 1.6s ease-in-out infinite;
}

.site-preloader__content {
  position: relative;
  z-index: 2;
  width: min(410px, calc(100vw - 56px));
  text-align: center;
}

.site-preloader__logo {
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 16px 34px rgba(19, 197, 222, .12));
  animation: preloader-logo-breathe 1.8s ease-in-out infinite;
}

@keyframes preloader-glow-pulse {
  0%, 100% {
    opacity: .55;
    transform: translate(-50%, -50%) scale(.96);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes preloader-logo-breathe {
  0%, 100% {
    filter: drop-shadow(0 14px 28px rgba(19, 197, 222, .1));
    transform: scale(.992);
  }
  50% {
    filter: drop-shadow(0 18px 38px rgba(43, 211, 237, .2));
    transform: scale(1.008);
  }
}

.site-preloader__line {
  position: relative;
  width: min(230px, 65%);
  height: 2px;
  margin: 24px auto 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(138, 196, 211, .13);
}

.site-preloader__line span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(43, 211, 237, .12), #2bd3ed 55%, rgba(43, 211, 237, .2));
  box-shadow: 0 0 14px rgba(43, 211, 237, .5);
  transform: scaleX(.08);
  transform-origin: left center;
}

.site-preloader__caption {
  display: block;
  color: rgba(213, 231, 237, .55);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.site-preloader.is-leaving {
  pointer-events: none;
  cursor: default;
  transition: opacity .28s ease, visibility .28s ease;
  opacity: 0;
  visibility: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

img,
svg {
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

.hero {
  position: relative;
  min-height: max(1040px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background-color: #02111a;
  background-image: url("../img/hero__bg.png");
  background-image: image-set(
    url("../img/hero__bg.webp") type("image/webp"),
    url("../img/hero__bg.png") type("image/png")
  );
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 175px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 13, 21, 0), rgba(2, 13, 21, 0.72) 45%, #020d15 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 11, 18, 0.96) 0%, rgba(0, 13, 21, 0.80) 31%, rgba(0, 13, 21, 0.24) 55%, rgba(0, 8, 15, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 8, 15, 0.85) 0%, rgba(0, 9, 16, 0.05) 20%, rgba(0, 9, 16, 0.08) 75%, rgba(0, 9, 16, 0.80) 100%);
}

.hero__container {
  position: relative;
  z-index: 2;
}

.header {
  min-height: 118px;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header--floating {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 30px), 1380px);
  min-height: 82px;
  padding: 0 18px;
  border: 1px solid rgba(105, 190, 217, .2);
  border-radius: 18px;
  background: rgba(2, 15, 24, .88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -140%);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .25s ease;
}

.header--floating.header--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header--floating .header__logo {
  width: 185px;
}

.header--floating .header__nav {
  gap: 22px;
}

.header--floating .header__nav a {
  font-size: 13px;
}

.header--floating .header__phone {
  min-width: 220px;
  padding: 9px 13px;
}

.header--floating .btn--header {
  min-height: 54px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  width: 250px;
}

.header__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  
}

.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 2.25vw, 48px);
}

.header__nav a {
  position: relative;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.88);
  transition: color .2s ease;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cyan);
  transition: transform .2s ease;
}

.header__nav a:hover {
  color: #fff;
}

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

.header__nav span {
  margin-left: 4px;
  color: #cbd6dc;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(0, 11, 18, 0.30);
  backdrop-filter: blur(8px);
}

.header__phone-icon {
  width: 24px;
  height: 24px;
  color: #fff;
  flex: 0 0 24px;
}

.header__phone svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header__phone strong,
.header__phone small {
  display: block;
}

.header__phone strong {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.header__phone small {
  margin-top: 4px;
  color: #9daeb8;
  font-size: 10px;
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 64px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--cyan {
  color: #00151b;
  background: linear-gradient(135deg, #2bd3ed 0%, #38d9f0 48%, #20b7d6 100%);
  box-shadow: 0 14px 34px rgba(25, 203, 232, 0.15), inset 0 1px 0 rgba(255,255,255,.28);
}

.btn--cyan:hover {
  box-shadow: 0 18px 42px rgba(25, 203, 232, 0.27), inset 0 1px 0 rgba(255,255,255,.34);
}

.btn--header {
  min-height: 64px;
  padding: 0 24px;
  border-radius: 12px;
}

.btn--primary {
  min-width: 270px;
  min-height: 64px;
  font-size: 16px;
}

.btn__round-arrow {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 33, 41, 0.65);
  border-radius: 50%;
  font-size: 16px;
}

.btn__arrow {
  font-size: 34px;
  line-height: 0;
  font-weight: 400;
}

.btn--outline {
  min-width: 310px;
  min-height: 64px;
  justify-content: space-between;
  color: #fff;
  border-color: rgba(173, 203, 216, 0.52);
  background: rgba(5, 20, 29, 0.46);
  backdrop-filter: blur(10px);
}

.btn--outline:hover {
  border-color: rgba(43, 211, 237, 0.85);
  background: rgba(7, 29, 40, 0.70);
}

.btn__calc {
  width: 32px;
  height: 32px;
  color: var(--cyan);
}

.btn__calc svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 20, 30, .72);
  padding: 11px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 99px;
}

.hero__content {
  position: relative;
  display: flex;
  min-height: calc(max(1040px, 100svh) - 118px);
  align-items: flex-start;
  padding: 82px 0 105px;
}

.hero__copy {
  width: min(920px, 61vw);
}

.hero__badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-bottom: 52px;
  padding: 0 15px;
  border: 1px solid rgba(194, 211, 219, 0.46);
  border-radius: 999px;
  color: #f5f7f8;
  font-size: 13px;
  background: rgba(4, 18, 27, 0.66);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter: blur(9px);
}

.hero__badge-icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #081016;
  background: #ffbd24;
  font-size: 13px;
}

.hero__title {
  margin: 0;
  max-width: 920px;
  font-size: clamp(42px, 3.2vw, 60px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, .18);
}

.hero__title span {
  display: inline-block;
  margin-top: 0;
  color: var(--cyan);
}

.hero__lead {
  margin: 44px 0 0;
  max-width: 760px;
  color: rgba(242, 248, 251, 0.78);
  font-size: clamp(17px, 1.1vw, 22px);
  line-height: 1;
  font-weight: 400;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin-top: 52px;
}

.feature-card {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(146, 188, 205, 0.38);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(6, 24, 35, 0.72), rgba(5, 20, 29, 0.54));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  backdrop-filter: blur(10px);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(43, 211, 237, 0.75);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(4, 28, 40, 0.70);
  box-shadow: 0 0 28px rgba(43, 211, 237, 0.08);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card:nth-child(3) .feature-card__icon svg {
  fill: currentColor;
  stroke: none;
}

.feature-card span,
.feature-card strong {
  display: block;
}

.feature-card span {
  margin-bottom: 5px;
  color: #d3dde2;
  font-size: 12px;
}

.feature-card strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0 0 110px;
  color: #fff;
  background-color: #020a12;
  background-image:
    linear-gradient(180deg, rgba(2, 9, 16, .1), rgba(2, 9, 16, .3)),
    url("../img/services-bg.png");
  background-image:
    linear-gradient(180deg, rgba(2, 9, 16, .1), rgba(2, 9, 16, .3)),
    image-set(
      url("../img/services-bg.webp") type("image/webp"),
      url("../img/services-bg.png") type("image/png")
    );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(6, 52, 73, .16), transparent 42%),
    linear-gradient(180deg, #020a12 0, transparent 12%, transparent 86%, #020912 100%);
}

.services__header {
  max-width: 940px;
  margin: 0 auto 54px;
  text-align: center;
}

.services__eyebrow {
  display: block;
  margin-bottom: 20px;
  color: #27d6ef;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.services__title {
  margin: 0;
  font-size: clamp(38px, 3.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 800;
}

.services__lead {
  margin: 25px 0 0;
  color: rgba(222, 232, 237, .78);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.55;
}

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

.service-card {
  position: relative;
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(135, 196, 218, .36);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10, 31, 43, .75), rgba(2, 14, 23, .98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 18px 50px rgba(0, 0, 0, .24);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(22, 174, 207, .045);
}

.service-card__media {
  position: absolute;
  inset: 0 0 auto;
  height: 52%;
  overflow: hidden;
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 11, 18, .05) 25%, rgba(2, 13, 21, .45) 66%, #020e17 100%);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.service-card__body {
  position: relative;
  z-index: 2;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 190px 22px 24px;
}

.service-card__icon {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid #16dff5;
  border-radius: 50%;
  color: #23e2f6;
  background: radial-gradient(circle at 35% 28%, rgba(31, 225, 247, .16), rgba(0, 20, 31, .94) 68%);
  box-shadow:
    0 0 0 5px rgba(6, 207, 235, .035),
    0 0 22px rgba(16, 218, 241, .42),
    inset 0 0 16px rgba(16, 218, 241, .12);
}

.service-card__icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(31, 225, 247, .5));
}

.service-card h3 {
  margin: 0;
  min-height: 60px;
  font-size: 23px;
  line-height: 1.17;
  letter-spacing: -.025em;
  font-weight: 750;
}

.service-card p {
  margin: 14px 0 22px;
  color: rgba(220, 231, 236, .76);
  font-size: 14px;
  line-height: 1.55;
}

.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding: 0;
  border: 0;
  color: #24dcef;
  background: none;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: default;
}

.service-card__more span {
  font-size: 24px;
  line-height: 1;
}

.trust {
  position: relative;
  overflow: hidden;
  padding: 104px 0 110px;
  color: #071824;
  background:
    radial-gradient(circle at 12% 12%, rgba(42, 211, 237, .12), transparent 25%),
    radial-gradient(circle at 88% 38%, rgba(57, 190, 225, .1), transparent 24%),
    linear-gradient(180deg, #f8fcfe 0%, #edf7fb 100%);
}

.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background-image: radial-gradient(rgba(12, 108, 139, .32) .7px, transparent .7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, #000, transparent 35%, transparent 65%, #000);
}

.trust__header {
  position: relative;
  max-width: 900px;
  margin: 0 auto 54px;
  text-align: center;
}

.trust__eyebrow {
  display: block;
  margin-bottom: 17px;
  color: #08aeca;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.trust__header h2 {
  margin: 0;
  font-size: clamp(38px, 3.3vw, 56px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.trust__seo-text {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 24px auto 0;
}

.trust__seo-text p {
  margin: 0;
  color: #61717a;
  font-size: 15px;
  line-height: 1.65;
}

.trust__stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 28px 18px;
  border: 1px solid rgba(41, 140, 170, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 22px 60px rgba(25, 81, 103, .09), inset 0 1px 0 #fff;
  backdrop-filter: blur(12px);
}

.trust-stat {
  position: relative;
  min-height: 90px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 0 16px;
  text-align: center;
}

.trust-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(transparent, rgba(48, 144, 173, .18), transparent);
}

.trust-stat strong {
  color: #08b9d6;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.04em;
}

.trust-stat strong span {
  font-size: .55em;
  letter-spacing: 0;
}

.trust-stat p {
  margin: 10px 0 0;
  color: #61717b;
  font-size: 11px;
  line-height: 1.35;
}

.trust-process {
  position: relative;
  margin-top: 70px;
}

.trust-process__heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 520px;
  margin: 0 auto 42px;
}

.trust-process__heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 177, 207, .42));
}

.trust-process__heading span:last-child {
  transform: scaleX(-1);
}

.trust-process__heading h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1;
  color: #071824;
}

.trust-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.trust-process__steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 7%;
  right: 7%;
  border-top: 1px dashed rgba(9, 175, 205, .36);
}

.trust-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.trust-step__icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 19px;
  border: 1px solid rgba(10, 182, 214, .26);
  border-radius: 50%;
  color: #06b7d4;
  background: #fff;
  box-shadow: 0 14px 35px rgba(22, 127, 157, .11), 0 0 0 8px rgba(255, 255, 255, .72);
}

.trust-step__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-step__number {
  display: block;
  margin-bottom: 6px;
  color: #08b5d1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.trust-step h4 {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: #071824;
}

.trust-step p {
  margin: 9px auto 0;
  max-width: 170px;
  color: #73818a;
  font-size: 10px;
  line-height: 1.45;
}

.trust-offer {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  margin-top: 76px;
  overflow: hidden;
  border: 1px solid rgba(54, 203, 229, .24);
  border-radius: 22px;
  color: #fff;
  background: #03141e;
  box-shadow: 0 28px 70px rgba(5, 42, 57, .2);
}

.trust-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #03141e 0%, rgba(3, 20, 30, .98) 40%, rgba(3, 20, 30, .34) 72%, rgba(3, 20, 30, .2) 100%),
    url("../img/service-cleaning.png") center 42% / cover no-repeat;
  background:
    linear-gradient(90deg, #03141e 0%, rgba(3, 20, 30, .98) 40%, rgba(3, 20, 30, .34) 72%, rgba(3, 20, 30, .2) 100%),
    image-set(
      url("../img/service-cleaning.webp") type("image/webp"),
      url("../img/service-cleaning.png") type("image/png")
    ) center 42% / cover no-repeat;
}

.trust-offer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 72% 45%, rgba(38, 210, 237, .16), transparent 28%);
}

.trust-offer__content {
  position: relative;
  z-index: 2;
  width: 62%;
  padding: 42px 48px;
}

.trust-offer__content > span {
  color: #2bd9ef;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.trust-offer h3 {
  margin: 12px 0 14px;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.trust-offer p {
  margin: 0;
  color: rgba(216, 229, 234, .72);
  font-size: 13px;
  line-height: 1.5;
}

.trust-offer__button {
  min-height: 52px;
  margin-top: 24px;
  padding: 0 22px;
  font-size: 13px;
}

.trust-offer__discount {
  position: absolute;
  right: 40px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(2, 15, 24, .7);
  backdrop-filter: blur(10px);
}

.trust-offer__discount strong {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #ff4365;
  font-size: 14px;
}

.trust-offer__discount span {
  font-size: 10px;
  line-height: 1.35;
}

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

.section-heading > span {
  display: block;
  margin-bottom: 17px;
  color: #25d4eb;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 3.3vw, 56px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.section-heading p {
  margin: 20px 0 0;
  color: rgba(210, 226, 233, .66);
  font-size: 15px;
  line-height: 1.55;
}

.reviews-rating {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 26px auto 0;
  padding: 11px 17px 11px 14px;
  border: 1px solid rgba(64, 197, 222, .24);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(9, 36, 48, .84), rgba(3, 20, 30, .76));
  box-shadow: 0 16px 42px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .045);
  backdrop-filter: blur(14px);
}

.reviews-rating__score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-right: 17px;
  border-right: 1px solid rgba(109, 185, 207, .18);
}

.reviews-rating__score strong {
  color: #fff;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.05em;
}

.reviews-rating__score span {
  color: rgba(206, 225, 232, .48);
  font-size: 11px;
  font-weight: 600;
}

.reviews-rating__details {
  display: grid;
  gap: 5px;
  text-align: left;
}

.reviews-rating__stars {
  position: relative;
  width: max-content;
  color: rgba(255, 198, 61, .18);
  font-size: 15px;
  line-height: 1;
  letter-spacing: .14em;
}

.reviews-rating__stars b {
  position: absolute;
  inset: 0 auto 0 0;
  width: 90%;
  overflow: hidden;
  color: #ffc63d;
  font: inherit;
  white-space: nowrap;
  filter: drop-shadow(0 0 7px rgba(255, 198, 61, .2));
}

.reviews-rating__details small {
  color: rgba(202, 220, 228, .52);
  font-size: 10px;
  line-height: 1.2;
}

.reviews {
  position: relative;
  overflow: hidden;
  padding: 104px 0 110px;
  color: #fff;
  background:
    radial-gradient(circle at 50% -10%, rgba(35, 207, 233, .1), transparent 34%),
    linear-gradient(180deg, #020c14 0%, #041722 100%);
}

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

.reviews__grid.slick-initialized {
  display: block;
  margin: 0 -9px;
  padding-bottom: 50px;
}

.reviews__grid .slick-list {
  overflow: hidden;
}

.reviews__grid .slick-track {
  display: flex;
}

.reviews__grid.slick-initialized .slick-slide {
  height: auto;
  display: flex;
  margin: 0 9px;
}

.reviews-arrow {
  position: absolute;
  top: calc(50% - 25px);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0 0 2px;
  border: 1px solid rgba(41, 214, 237, .5);
  border-radius: 50%;
  color: #2bd9ed;
  background: rgba(2, 17, 26, .9);
  box-shadow: 0 0 22px rgba(34, 205, 231, .14);
  font-size: 20px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.reviews-arrow:hover {
  color: #02151c;
  background: #2bd6ea;
  box-shadow: 0 0 28px rgba(34, 205, 231, .32);
}

.reviews-arrow--prev {
  left: 4px;
}

.reviews-arrow--next {
  right: 4px;
}

.reviews__grid .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reviews__grid .slick-dots button {
  width: 7px;
  height: 7px;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 99px;
  color: transparent;
  background: rgba(133, 194, 211, .28);
  font-size: 0;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.reviews__grid .slick-dots .slick-active button {
  width: 24px;
  background: #2bd5e9;
}

.review-card {
  position: relative;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(83, 186, 216, .2);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(9, 34, 47, .88), rgba(3, 18, 28, .94));
  box-shadow: 0 20px 55px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .045);
}

.review-card::before {
  content: "“";
  position: absolute;
  right: 20px;
  bottom: -20px;
  color: rgba(39, 213, 236, .055);
  font: 170px/1 Georgia, serif;
}

.review-card__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 214, 237, .5);
  border-radius: 50%;
  color: #2cdcf0;
  background: rgba(20, 182, 211, .1);
  font-size: 16px;
  font-weight: 800;
}

.review-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.review-card__top div span,
.review-card time {
  color: rgba(202, 220, 228, .46);
  font-size: 9px;
}

.review-card__stars {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  color: #ffc63d;
  font-size: 14px;
  letter-spacing: .14em;
}

.review-card__stars-empty {
  color: rgba(255, 198, 61, .22);
}

.review-card > p {
  position: relative;
  z-index: 1;
  margin: 16px 0 22px;
  color: rgba(216, 230, 235, .72);
  font-size: 13px;
  line-height: 1.65;
}

.review-card__source {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: rgba(198, 218, 226, .48);
  font-size: 9px;
}

.review-card__source span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #032029;
  background: #2bd5e9;
  font-size: 10px;
  font-weight: 900;
}

.faq {
  position: relative;
  padding: 104px 0 110px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(37, 206, 233, .1), transparent 25%),
    #03131d;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .75fr);
  gap: 28px;
  align-items: start;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(87, 179, 207, .18);
  border-radius: 14px;
  background: rgba(5, 28, 40, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}

.faq-item--open {
  border-color: rgba(42, 211, 235, .42);
  background: rgba(6, 34, 47, .92);
}

.faq-item__question {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.faq-item__question i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid rgba(44, 211, 235, .3);
  border-radius: 50%;
}

.faq-item__question i::before,
.faq-item__question i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: #2bd6eb;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

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

.faq-item--open .faq-item__question i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}

.faq-item--open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer > div {
  overflow: hidden;
}

.faq-item__answer p {
  margin: 0;
  padding: 0 60px 22px 22px;
  color: rgba(205, 222, 229, .65);
  font-size: 12px;
  line-height: 1.65;
}

.faq-contact {
  position: sticky;
  top: 110px;
  padding: 34px;
  border: 1px solid rgba(63, 204, 230, .25);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(38, 210, 236, .15), transparent 35%),
    linear-gradient(145deg, rgba(8, 39, 53, .94), rgba(3, 19, 29, .98));
  box-shadow: 0 24px 65px rgba(0, 0, 0, .26);
}

.faq-contact__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(43, 216, 238, .5);
  border-radius: 50%;
  color: #2bd9ee;
  background: rgba(27, 207, 234, .08);
  box-shadow: 0 0 25px rgba(31, 208, 234, .12);
}

.faq-contact__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-contact__eyebrow {
  color: #2bd6ea;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.faq-contact h3 {
  margin: 10px 0 12px;
  font-size: 27px;
  line-height: 1;
}

.faq-contact p {
  margin: 0 0 20px;
  color: rgba(205, 223, 230, .62);
  font-size: 12px;
  line-height: 1.55;
}

.faq-contact__phone {
  display: block;
  margin-bottom: 22px;
  color: #fff;
  font-size: 19px;
  font-weight: 750;
}

.faq-contact__button {
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  font-size: 12px;
}

.footer {
  color: #fff;
  background: #010910;
  border-top: 1px solid rgba(64, 172, 204, .14);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.35fr 1fr .75fr 1fr .8fr;
  gap: 44px;
  padding: 64px 0 52px;
}

.footer__brand img {
  width: 205px;
  height: auto;
}

.footer__brand p {
  max-width: 260px;
  margin: 20px 0 0;
  color: rgba(191, 212, 221, .5);
  font-size: 11px;
  line-height: 1.65;
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__column h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 13px;
}

.footer__column a,
.footer__column span {
  color: rgba(193, 215, 223, .55);
  font-size: 10px;
  line-height: 1.35;
}

.footer__column a:hover {
  color: #2bd6eb;
}

.footer__whatsapp {
  align-self: start;
  position: relative;
  min-height: 112px;
  padding: 20px 68px 20px 20px;
  border: 1px solid rgba(72, 177, 207, .15);
  border-radius: 14px;
  background: rgba(7, 29, 40, .75);
}

.footer__whatsapp > span {
  font-size: 12px;
  font-weight: 700;
}

.footer__whatsapp p {
  margin: 8px 0 0;
  color: rgba(192, 212, 221, .5);
  font-size: 9px;
  line-height: 1.4;
}

.footer__whatsapp a {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #032015;
  background: #35df80;
  font-size: 11px;
  font-weight: 900;
  transform: translateY(-50%);
}

.footer__bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .055);
  color: rgba(176, 199, 208, .4);
  font-size: 9px;
}

.footer__bottom a:hover {
  color: #2bd6eb;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 8, 13, .68);
  backdrop-filter: blur(7px);
  transition: opacity .35s ease;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 440px);
  height: 100dvh;
  overflow-y: auto;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(38, 213, 238, .1), transparent 27%),
    linear-gradient(155deg, #06221f 0%, #031812 48%, #020e0c 100%);
  border-left: 1px solid rgba(43, 218, 182, .23);
  box-shadow: -26px 0 70px rgba(0, 0, 0, .42);
  transform: translateX(105%);
  transition: transform .48s cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu--open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu--open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu--open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__head {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(51, 220, 184, .18);
}

.mobile-menu__head div {
  display: grid;
  gap: 7px;
}

.mobile-menu__head span,
.mobile-menu__contacts > span {
  color: #35dfa9;
  font-size: 9px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mobile-menu__head strong {
  font-size: 25px;
  line-height: 1;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.mobile-menu__close {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  padding: 0;
  border: 1px solid rgba(51, 221, 177, .3);
  color: #38dfa9;
  background: rgba(3, 24, 19, .6);
  cursor: pointer;
}

.mobile-menu__close i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 21px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close i:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__nav {
  display: grid;
}

.mobile-menu__nav a {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
}

.mobile-menu__nav a span {
  font-size: 17px;
  font-weight: 550;
}

.mobile-menu__nav a small {
  color: #39dfa9;
  font-size: 9px;
  font-weight: 800;
}

.mobile-menu__contacts {
  display: grid;
  gap: 13px;
  padding: 30px 28px 38px;
}

.mobile-menu__contacts a {
  width: fit-content;
  color: rgba(232, 242, 239, .78);
  font-size: 13px;
  font-weight: 600;
}

.mobile-menu__contacts a:nth-of-type(2) {
  color: #38dfa9;
}

.mobile-menu__contacts button {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  color: #03221a;
  background: linear-gradient(135deg, #3ce0ae, #22c9d9);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu__contacts button b {
  font-size: 22px;
  font-weight: 400;
}

.mobile-quick-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: opacity .2s ease, transform .2s ease;
}

.quick-contact__panel {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.quick-contact__heading,
.quick-contact__launcher,
.mobile-quick-action__arrow,
.quick-contact__snow--mobile,
.quick-contact__label-mobile {
  display: none;
}

.mobile-quick-action {
  position: relative;
  z-index: 1;
  width: 188px;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 14px 8px 9px;
  border: 1px solid rgba(165, 230, 240, .22);
  border-radius: 18px;
  color: #f4fdff;
  background: rgba(4, 24, 34, .92);
  box-shadow: 0 16px 38px rgba(0, 7, 12, .36), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.mobile-quick-action:hover {
  transform: translateX(-4px);
  border-color: rgba(96, 230, 248, .52);
  box-shadow: 0 18px 42px rgba(0, 7, 12, .42), 0 0 24px rgba(35, 211, 235, .12);
}

.mobile-quick-action:focus-visible {
  outline: 2px solid #61e8f7;
  outline-offset: 3px;
}

.mobile-quick-action__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.mobile-quick-action__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-quick-action__label {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.mobile-quick-action__label strong {
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: .01em;
}

.mobile-quick-action__label small {
  color: rgba(218, 239, 244, .62);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: .04em;
}

.mobile-quick-action--phone .mobile-quick-action__icon {
  color: #e9fdff;
  background: linear-gradient(145deg, #2bd7eb, #0d92b4);
}

.mobile-quick-action--whatsapp .mobile-quick-action__icon {
  color: #fff;
  background: linear-gradient(145deg, #39df7d, #16a64f);
}

.mobile-quick-action--whatsapp .mobile-quick-action__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}

.quick-contact__snow {
  position: absolute;
  z-index: 0;
  inset: -18px -15px;
  pointer-events: none;
  animation: quick-contact-snow-orbit 8s linear infinite;
}

.quick-contact__snow span {
  position: absolute;
  color: #e8fdff;
  font-size: 14px;
  line-height: 1;
  text-shadow: 0 0 4px #fff, 0 0 11px rgba(78, 222, 244, .9);
}

.quick-contact__snow span:nth-child(1) {
  top: 0;
  left: 18%;
  font-size: 12px;
}

.quick-contact__snow span:nth-child(2) {
  top: 42%;
  right: 0;
  font-size: 15px;
}

.quick-contact__snow span:nth-child(3) {
  bottom: 0;
  left: 12%;
  font-size: 13px;
}

@keyframes quick-contact-snow-orbit {
  to { transform: rotate(360deg); }
}

body.modal-open .mobile-quick-actions {
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
}

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
}

.callback-modal--open {
  visibility: visible;
  opacity: 1;
}

.callback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 7, 12, .78);
  backdrop-filter: blur(12px);
}

.callback-modal__dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: calc(100vh - 40px);
  max-height: calc(100svh - 40px);
  padding: 42px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: rgba(43, 211, 237, .65) rgba(1, 13, 21, .35);
  border: 1px solid rgba(75, 211, 235, .3);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(33, 211, 237, .15), transparent 38%),
    linear-gradient(145deg, rgba(7, 31, 43, .98), rgba(2, 15, 24, .99));
  box-shadow: 0 34px 100px rgba(0, 0, 0, .56), inset 0 1px 0 rgba(255, 255, 255, .06);
  transform: translateY(28px) scale(.97);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

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

.callback-modal__dialog::-webkit-scrollbar {
  width: 8px;
}

.callback-modal__dialog::-webkit-scrollbar-track {
  background: rgba(1, 13, 21, .35);
}

.callback-modal__dialog::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(43, 211, 237, .65);
  background-clip: padding-box;
}

.callback-modal__dialog::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -110px;
  right: -70px;
  border-radius: 50%;
  background: rgba(28, 215, 241, .12);
  filter: blur(20px);
}

.callback-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid rgba(129, 196, 215, .24);
  border-radius: 50%;
  color: #d9e7ec;
  background: rgba(2, 17, 26, .68);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.callback-modal__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: #2bd9ef;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.callback-modal h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -.04em;
}

.callback-modal__dialog > p {
  margin: 16px 0 24px;
  color: rgba(218, 230, 235, .7);
  font-size: 15px;
  line-height: 1.55;
}

.callback-form {
  display: grid;
  gap: 16px;
}

.callback-form__field {
  display: grid;
  gap: 7px;
}

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

.callback-form__field--wide {
  grid-column: 1 / -1;
}

.callback-form__field > span {
  color: rgba(231, 240, 244, .78);
  font-size: 12px;
  font-weight: 600;
}

.callback-form__field input,
.callback-form__field select,
.callback-form__field textarea {
  width: 100%;
  padding: 0 18px;
  outline: none;
  border: 1px solid rgba(131, 186, 204, .25);
  border-radius: 12px;
  color: #fff;
  background: rgba(1, 13, 21, .68);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.callback-form__field input,
.callback-form__field select {
  height: 54px;
}

.callback-form__field select {
  color-scheme: dark;
  cursor: pointer;
}

.custom-select {
  position: relative;
  display: block;
  min-width: 0;
}

.custom-select--ready > select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
}

.custom-select__trigger {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  outline: none;
  border: 1px solid rgba(131, 186, 204, .25);
  border-radius: 12px;
  color: #fff;
  background: rgba(1, 13, 21, .68);
  font: inherit;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.custom-select__trigger i {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-right: 2px solid rgba(226, 241, 246, .72);
  border-bottom: 2px solid rgba(226, 241, 246, .72);
  transform: translateY(-2px) rotate(45deg);
  transition: transform .22s ease, border-color .2s ease;
}

.custom-select--open .custom-select__trigger {
  border-color: rgba(42, 216, 239, .82);
  background: rgba(2, 21, 31, .96);
  box-shadow: 0 0 0 4px rgba(42, 216, 239, .08);
}

.custom-select--open .custom-select__trigger i {
  border-color: #35d8ed;
  transform: translateY(3px) rotate(225deg);
}

.custom-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  max-height: 274px;
  padding: 8px;
  overflow-y: auto;
  border: 1px solid rgba(61, 204, 228, .28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0, rgba(43, 211, 237, .1), transparent 42%),
    #061c27;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(18px);
}

.custom-select__menu[hidden] {
  display: none;
}

.custom-select__option {
  position: relative;
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 8px 42px 8px 13px;
  border: 0;
  border-radius: 9px;
  color: rgba(233, 242, 245, .82);
  background: transparent;
  font: inherit;
  font-size: 13px;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.custom-select__option:hover,
.custom-select__option:focus-visible {
  outline: none;
  color: #fff;
  background: linear-gradient(90deg, rgba(43, 211, 237, .17), rgba(43, 211, 237, .05));
  transform: translateX(2px);
}

.custom-select__option[aria-selected="true"] {
  color: #47deef;
  background: rgba(43, 211, 237, .1);
}

.custom-select__option[aria-selected="true"]::after {
  content: "✓";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(43, 211, 237, .28);
  border-radius: 50%;
  color: #47deef;
  background: rgba(43, 211, 237, .08);
  font-size: 11px;
  transform: translateY(-50%);
}

.custom-select.is-invalid .custom-select__trigger {
  border-color: #ff6e64;
}

.callback-form__field textarea {
  min-height: 86px;
  padding-top: 14px;
  padding-bottom: 14px;
  line-height: 1.45;
  resize: none;
}

.callback-form__field input:focus,
.callback-form__field select:focus,
.callback-form__field textarea:focus {
  border-color: rgba(42, 216, 239, .8);
  background: rgba(2, 21, 31, .9);
  box-shadow: 0 0 0 4px rgba(42, 216, 239, .08);
}

.callback-form__field input::placeholder,
.callback-form__field textarea::placeholder {
  color: rgba(184, 202, 210, .42);
}

.callback-form__field input.is-invalid,
.callback-form__field select.is-invalid,
.callback-form__field textarea.is-invalid {
  border-color: #ff6e64;
}

.callback-form__submit {
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
  cursor: pointer;
}

.callback-form__submit:disabled {
  opacity: .65;
  cursor: wait;
}

.callback-form small {
  color: rgba(183, 201, 209, .48);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.callback-form__status {
  min-height: 20px;
  color: #4ce2a1;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.callback-form__status.is-error {
  color: #ff827a;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 80;
  width: min(560px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(75, 211, 235, .26);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(43, 211, 237, .11), transparent 36%),
    rgba(3, 20, 30, .96);
  box-shadow: 0 22px 65px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .3s ease, visibility .3s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}

.cookie-banner--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(43, 211, 237, .22);
  border-radius: 14px;
  background: rgba(43, 211, 237, .07);
  font-size: 25px;
}

.cookie-banner__content strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
}

.cookie-banner__content p {
  margin: 0;
  color: rgba(218, 230, 235, .68);
  font-size: 12px;
  line-height: 1.5;
}

.cookie-banner__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-banner__button {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.cookie-banner__button:hover {
  transform: translateY(-1px);
}

.cookie-banner__button--secondary {
  border: 1px solid rgba(131, 186, 204, .24);
  color: rgba(225, 236, 240, .75);
  background: rgba(1, 13, 21, .6);
}

.cookie-banner__button--primary {
  border: 1px solid rgba(76, 226, 246, .5);
  color: #03202a;
  background: linear-gradient(135deg, #42ddf1, #22bed8);
}

body.modal-open .cookie-banner,
body.menu-open .cookie-banner {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

@media (max-width: 1900px) {
  .header {
    grid-template-columns: 230px minmax(0, 1fr) auto;
    gap: 24px;
  }

  .header__logo { width: 205px; }
  .header__nav { gap: 26px; }
  .header__phone { min-width: 232px; }
  .header__phone strong { font-size: 14px; }
  .btn--header { padding: 0 18px; }

  .hero__copy { width: min(880px, 58vw); }
  .hero__features { max-width: 840px; }
}

@media (max-width: 1480px) {
  .header {
    min-height: 108px;
  }

  .header--floating {
    min-height: 82px;
  }

  .header__nav {
    gap: 18px;
  }

  .header__nav a {
    font-size: 13px;
  }

  .header__phone {
    min-width: 205px;
    padding: 10px 13px;
  }

  .btn--header {
    min-height: 56px;
    font-size: 13px;
  }

  .hero {
    min-height: max(860px, 100svh);
  }

  .hero__content {
    min-height: calc(max(860px, 100svh) - 108px);
    padding-top: 62px;
  }

  .hero__copy {
    width: min(760px, 57vw);
  }

  .hero__badge {
    margin-bottom: 42px;
  }

  .hero__lead {
    margin-top: 36px;
  }

  .hero__buttons {
    margin-top: 38px;
  }

  .btn--primary,
  .btn--outline {
    min-height: 60px;
  }

  .btn--primary {
    min-width: 260px;
  }

  .btn--outline {
    min-width: 300px;
  }

  .hero__features {
    margin-top: 44px;
  }

  .feature-card {
    min-height: 80px;
    padding: 12px;
  }

  .feature-card__icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .feature-card__icon svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 1180px) {
  .header {
    grid-template-columns: auto 1fr auto;
  }

  .header__nav {
    position: absolute;
    top: 98px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: rgba(2, 14, 22, .97);
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
    backdrop-filter: blur(16px);
    transition: max-height .25s ease, opacity .2s ease, padding .25s ease;
  }

  .header > .header__nav {
    display: none;
  }

  .header__nav--open {
    max-height: 480px;
    opacity: 1;
    padding: 14px 22px;
    border-color: var(--line);
  }

  .header__nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: 15px;
  }

  .header__phone {
    display: none;
  }

  .burger {
    display: block;
  }

  .hero {
    background-position: 66% top;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(0, 11, 18, 0.97) 0%, rgba(0, 13, 21, 0.82) 42%, rgba(0, 13, 21, 0.33) 69%, rgba(0, 8, 15, 0.18) 100%),
      linear-gradient(180deg, rgba(0, 8, 15, 0.88) 0%, rgba(0, 9, 16, 0.08) 30%, rgba(0, 9, 16, 0.25) 80%, rgba(0, 9, 16, 0.9) 100%);
  }

  .hero__copy {
    width: 68vw;
  }

  .hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
  }

  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-process__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 44px;
  }

  .trust-process__steps::before {
    display: none;
  }

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

  .footer__main {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer__whatsapp {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .header {
    min-height: 88px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .header--floating {
    top: 8px;
    min-height: 72px;
    padding: 0 12px;
    border-radius: 14px;
  }

  .header--floating .header__logo {
    width: 150px;
  }

  .header__logo {
    width: 178px;
  }

  .btn--header {
    display: none;
  }

  .header__nav {
    top: 82px;
  }

  .hero {
    min-height: max(940px, 100svh);
    background-position: 73% top;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(0, 11, 18, 0.98) 0%, rgba(0, 13, 21, 0.88) 55%, rgba(0, 13, 21, 0.46) 100%),
      linear-gradient(180deg, rgba(0, 8, 15, 0.86) 0%, rgba(0, 9, 16, 0.19) 38%, rgba(0, 9, 16, 0.72) 74%, #020d15 100%);
  }

  .hero__content {
    min-height: calc(max(940px, 100svh) - 88px);
    align-items: flex-start;
    padding: 64px 0 70px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero__badge {
    margin-bottom: 28px;
    font-size: 12px;
  }

  .hero__title {
    max-width: 680px;
    font-size: clamp(42px, 8.2vw, 62px);
  }

  .hero__lead {
    max-width: 610px;
    font-size: 18px;
    line-height: 1;
  }

  .hero__buttons {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 560px);
  }

  .btn--primary,
  .btn--outline {
    width: 100%;
    min-width: 0;
  }

  .hero__features {
    width: min(100%, 560px);
  }

  .desktop-only {
    display: none;
  }

  .services {
    padding: 0 0 82px;
    background-size: auto 100%;
  }

  .services__header {
    margin-bottom: 38px;
  }

  .services__title {
    font-size: clamp(34px, 8vw, 48px);
  }

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

  .trust {
    padding: 76px 0 82px;
  }

  .trust__header {
    margin-bottom: 38px;
  }

  .trust__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 14px;
  }

  .trust-stat {
    min-height: 116px;
  }

  .trust-stat::after {
    display: none;
  }

  .trust-stat:nth-child(odd):not(:last-child) {
    border-right: 1px solid rgba(48, 144, 173, .12);
  }

  .trust-stat:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(48, 144, 173, .12);
  }

  .trust-process {
    margin-top: 56px;
  }

  .trust-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-offer {
    min-height: 430px;
    align-items: flex-end;
    margin-top: 60px;
  }

  .trust-offer::before {
    background:
      linear-gradient(0deg, #03141e 0%, rgba(3, 20, 30, .9) 48%, rgba(3, 20, 30, .18) 100%),
      url("../img/service-cleaning.png") center 32% / cover no-repeat;
    background:
      linear-gradient(0deg, #03141e 0%, rgba(3, 20, 30, .9) 48%, rgba(3, 20, 30, .18) 100%),
      image-set(
        url("../img/service-cleaning.webp") type("image/webp"),
        url("../img/service-cleaning.png") type("image/png")
      ) center 32% / cover no-repeat;
  }

  .trust-offer__content {
    width: 100%;
    padding: 150px 26px 28px;
  }

  .trust-offer__discount {
    top: 18px;
    right: 18px;
    bottom: auto;
  }

  .reviews,
  .faq {
    padding: 76px 0 82px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .faq-contact {
    position: relative;
    top: auto;
  }

  .footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .footer__whatsapp {
    grid-column: auto;
  }

  .mobile-quick-actions {
    right: 14px;
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 64px;
    height: 64px;
    display: block;
  }

  .quick-contact__panel {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: min(330px, calc(100vw - 28px));
    display: grid;
    gap: 9px;
    padding: 17px;
    border: 1px solid rgba(94, 221, 239, .25);
    border-radius: 22px;
    background:
      radial-gradient(circle at 100% 0, rgba(32, 211, 235, .14), transparent 38%),
      linear-gradient(145deg, rgba(7, 31, 41, .98), rgba(2, 16, 24, .99));
    box-shadow: 0 24px 60px rgba(0, 5, 10, .48), inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(16px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(.96);
    transform-origin: calc(100% - 32px) 100%;
    transition: opacity .22s ease, transform .3s cubic-bezier(.22, 1, .36, 1), visibility .22s ease;
  }

  .mobile-quick-actions--open .quick-contact__panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .quick-contact__heading {
    display: grid;
    gap: 5px;
    padding: 1px 2px 5px;
  }

  .quick-contact__heading span {
    color: #2ed8ed;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .quick-contact__heading strong {
    color: #f4fbfd;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -.025em;
  }

  .mobile-quick-action {
    width: 100%;
    min-height: 68px;
    gap: 11px;
    padding: 9px 11px;
    border-color: rgba(145, 210, 220, .18);
    border-radius: 15px;
    background: rgba(13, 35, 44, .82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
    backdrop-filter: none;
  }

  .mobile-quick-action:hover {
    transform: none;
    border-color: rgba(82, 223, 242, .38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  }

  .mobile-quick-action__icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .mobile-quick-action__icon svg {
    width: 23px;
    height: 23px;
  }

  .mobile-quick-action__label {
    flex: 1;
    display: grid;
    gap: 3px;
  }

  .mobile-quick-action__label strong {
    font-size: 12px;
  }

  .mobile-quick-action__label small {
    font-size: 8px;
  }

  .quick-contact__label-desktop {
    display: none;
  }

  .quick-contact__label-mobile {
    display: inline;
  }

  .mobile-quick-action__arrow {
    display: block;
    flex: 0 0 auto;
    color: rgba(193, 229, 235, .52);
    font-size: 20px;
    line-height: 1;
  }

  .mobile-quick-action--whatsapp .mobile-quick-action__icon svg {
    width: 25px;
    height: 25px;
  }

  .quick-contact__launcher {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: block;
  }

  .quick-contact__toggle {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(230, 253, 255, .5);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #2ddcef, #0b94b9);
    box-shadow: 0 15px 34px rgba(0, 6, 11, .4), 0 0 0 7px rgba(38, 215, 237, .12), inset 0 1px 0 rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .quick-contact__toggle:active {
    transform: scale(.94);
  }

  .quick-contact__toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
  }

  .quick-contact__toggle svg {
    position: absolute;
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity .2s ease, transform .3s ease;
  }

  .quick-contact__toggle-close {
    opacity: 0;
    transform: rotate(-90deg) scale(.65);
  }

  .mobile-quick-actions--open .quick-contact__toggle-phone {
    opacity: 0;
    transform: rotate(90deg) scale(.65);
  }

  .mobile-quick-actions--open .quick-contact__toggle-close {
    opacity: 1;
    transform: rotate(0) scale(1);
  }

  .quick-contact__snow--desktop {
    display: none;
  }

  .quick-contact__snow--mobile {
    display: block;
    inset: -14px;
  }

  .quick-contact__snow--mobile span:nth-child(1) {
    left: 8%;
  }

  .quick-contact__snow--mobile span:nth-child(2) {
    top: 46%;
  }

  .quick-contact__snow--mobile span:nth-child(3) {
    left: 4%;
  }

  body.menu-open .mobile-quick-actions,
  body.modal-open .mobile-quick-actions,
  body.cookie-visible .mobile-quick-actions {
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
  }
}

@media (max-width: 560px) {
  .reviews-rating {
    gap: 13px;
    margin-top: 22px;
    padding: 10px 13px;
  }

  .reviews-rating__score {
    padding-right: 13px;
  }

  .reviews-rating__score strong {
    font-size: 27px;
  }

  .reviews-rating__details small {
    font-size: 9px;
  }

  .cookie-banner {
    left: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
  }

  .cookie-banner__icon {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner__button {
    padding: 0 10px;
    font-size: 11px;
  }

  .callback-form__field input,
  .callback-form__field select,
  .callback-form__field textarea,
  .custom-select__trigger {
    font-size: 16px;
  }

  .custom-select__option {
    min-height: 44px;
    font-size: 14px;
  }

  .site-preloader__content {
    width: min(300px, calc(100vw - 48px));
  }

  .site-preloader__line {
    margin-top: 18px;
  }

  .site-preloader__caption {
    font-size: 9px;
    letter-spacing: .24em;
  }

  .hero {
    min-height: max(1080px, 100svh);
    background-position: 70% top;
  }

  .hero__content {
    min-height: calc(max(1080px, 100svh) - 88px);
    padding-top: 52px;
  }

  .hero__badge {
    max-width: 100%;
    min-height: 40px;
    margin-bottom: 24px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 11px;
  }

  .hero__title {
    font-size: 40px;
    line-height: 1;
  }

  .hero__title span {
    margin-top: 0;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero__buttons {
    margin-top: 30px;
  }

  .btn {
    min-height: 62px;
    padding: 0 20px;
    border-radius: 11px;
  }

  .hero__features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 32px;
  }

  .feature-card {
    min-height: 78px;
  }

  .services {
    padding: 0 0 70px;
  }

  .services__eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .services__title {
    font-size: 34px;
  }

  .services__lead {
    margin-top: 20px;
    font-size: 15px;
  }

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

  .service-card,
  .service-card__body {
    min-height: 480px;
  }

  .service-card__body {
    padding: 180px 22px 24px;
  }

  .trust {
    padding: 62px 0 70px;
  }

  .trust__header h2 {
    font-size: 34px;
  }

  .trust__seo-text p {
    font-size: 14px;
  }

  .trust-stat strong {
    font-size: 28px;
  }

  .trust-process__heading {
    gap: 10px;
  }

  .trust-process__steps {
    gap: 34px 12px;
  }

  .trust-step__icon {
    width: 66px;
    height: 66px;
  }

  .trust-step__icon svg {
    width: 27px;
    height: 27px;
  }

  .trust-offer h3 {
    font-size: 30px;
  }

  .trust-offer__button {
    width: 100%;
  }

  .reviews,
  .faq {
    padding: 62px 0 70px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

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

  .review-card {
    min-height: 290px;
  }

  .faq-item__question {
    min-height: 62px;
    padding: 0 16px;
    font-size: 13px;
  }

  .faq-item__answer p {
    padding: 0 46px 18px 16px;
  }

  .faq-contact {
    padding: 26px;
  }

  .footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 22px;
    padding: 50px 0 38px;
  }

  .footer__brand,
  .footer__contacts,
  .footer__whatsapp {
    grid-column: 1 / -1;
  }

  .footer__brand img {
    width: 190px;
  }

  .footer__bottom {
    min-height: 82px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .callback-modal {
    padding: 12px;
  }

  .callback-modal__dialog {
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 38px 22px 26px;
    border-radius: 18px;
  }

  .callback-modal__dialog > p {
    margin-bottom: 24px;
  }

  .callback-form__grid {
    grid-template-columns: 1fr;
  }

  .callback-form__field--wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quick-contact__snow {
    animation: none;
  }

  .site-preloader::after,
  .site-preloader__canvas {
    display: none;
  }

  .site-preloader__glow,
  .site-preloader__logo {
    animation: none;
  }
}
