/* Google Sans is loaded via <link> in HTML <head> for optimal performance */
:root {
  font-size: 20px;
}
ul,
li {
  margin: 0;
  padding: 0;
  display: block;
}
a {
  transition: .3s all;
  outline: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}
body {
  font-size: .9rem;
  font-family: 'Google Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: #002134;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mobile-fixed {
  display: none;
}
.toast {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-150%);
  background: linear-gradient(135deg, #00b4ff 0%, #009ae3 100%);
  color: #fff;
  padding: 0.9rem 1.5rem 0.9rem 0.9rem;
  border-radius: 1.2rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 154, 227, 0.45);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 1000000;
  min-width: 19rem;
  max-width: calc(100% - 2rem);
  transition: transform .55s cubic-bezier(.2, .9, .3, 1.1);
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
.toast.error {
  background: linear-gradient(135deg, #ff6b6b 0%, #d63333 100%);
  box-shadow: 0 1rem 2.5rem rgba(214, 51, 51, 0.45);
}
.toast__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.toast__icon svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  animation: toast-icon-draw .5s ease .15s backwards;
}
@keyframes toast-icon-draw {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.toast__content {
  flex: 1;
  min-width: 0;
}
.toast__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}
.toast__text {
  font-size: 0.82rem;
  font-weight: 400;
  opacity: 0.92;
  line-height: 1.3;
}
@media (max-width: 767.98px) {
  .toast {
    top: 1rem;
    min-width: auto;
    width: calc(100% - 1.5rem);
    padding: 0.75rem 1.2rem 0.75rem 0.75rem;
    border-radius: 1rem;
  }
  .toast__icon {
    width: 2rem;
    height: 2rem;
  }
  .toast__icon svg {
    width: 1.1rem;
    height: 1.1rem;
  }
  .toast__title {
    font-size: 0.9rem;
  }
  .toast__text {
    font-size: 0.75rem;
  }
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease;
}
.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}
.preloader__inner {
  text-align: center;
  animation: preloader-fade-in .5s ease;
}
@keyframes preloader-fade-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.preloader__logo {
  width: 14rem;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
  animation: preloader-pulse 1.6s ease-in-out infinite;
}
@keyframes preloader-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0.4rem 1rem rgba(0, 154, 227, 0.2));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 0.6rem 1.5rem rgba(0, 154, 227, 0.35));
  }
}
.preloader__bar {
  width: 14rem;
  height: 0.3rem;
  background: rgba(0, 154, 227, 0.12);
  border-radius: 2rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.preloader__bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00b4ff 0%, #009ae3 50%, #0079b3 100%);
  border-radius: 2rem;
  animation: preloader-progress 3s cubic-bezier(.4, 0, .2, 1) forwards;
  box-shadow: 0 0 0.6rem rgba(0, 154, 227, 0.5);
}
@keyframes preloader-progress {
  0%   { width: 0; }
  20%  { width: 30%; }
  50%  { width: 55%; }
  80%  { width: 85%; }
  100% { width: 100%; }
}
.preloader__text {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b8aa3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: preloader-blink 1.4s ease-in-out infinite;
}
@keyframes preloader-blink {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
html.preloader-skip .preloader {
  display: none;
}
@media (max-width: 767.98px) {
  .preloader__logo {
    width: 11rem;
    margin-bottom: 1.5rem;
  }
  .preloader__bar {
    width: 11rem;
  }
}
.tel-popup {
  position: fixed;
  z-index: 99;
  right: 6rem;
  bottom: 5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #009ae3;
  animation: pulse-white 2s infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.tel-popup img {
  width: 1.5rem;
  height: 1.5rem;
}
@keyframes pulse-white {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 154, 227, 0.3);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 1rem rgba(0, 154, 227, 0.3);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 154, 227, 0.3);
  }
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  border-radius: .75rem;
  background: #009ae3;
  color: #fff;
  font-weight: 700;
  box-shadow: 0px .2rem 0px #009ae3;
}
.section__title {
  color: #002134;
  letter-spacing: -0.04em;
  line-height: 140%;
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
  margin: 0 auto 3rem;
}
.section__title span {
  color: #009ae3;
}
.section-feedback__form {
  background: #FFFFFF;
  box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  padding: 2.5rem;
  width: 48.5%;
}
.section-feedback__title {
  font-size: 1.2rem;
  color: #002134;
  line-height: 140%;
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-feedback__title span {
  color: #009ae3;
}
.section-feedback__text {
  font-size: 0.85rem;
  line-height: 140%;
  margin-bottom: 1.6rem;
}
.section-feedback__input {
  margin-bottom: 1rem;
}
.section-feedback__input input {
  width: 100%;
  padding: 1.5rem 2rem;
  border: 1px solid #CECECE;
  border-radius: .75rem;
  color: #002134;
  outline: none;
  transition: .25s all;
  animation: input-attract 2.4s ease-in-out infinite;
}
.section-feedback__input input::placeholder {
  color: #002134;
}
.section-feedback__input input:hover,
.section-feedback__input input:focus {
  animation: none;
  border-color: #009ae3;
  box-shadow: 0 0 0 0.35rem rgba(0, 154, 227, 0.15);
}
.section-feedback__btn {
  border: none;
  width: 100%;
  height: 4.2rem;
  position: relative;
  overflow: hidden;
}
.section-feedback__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btn-shine 3s ease-in-out infinite;
  pointer-events: none;
}
.section-feedback__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px .2rem 0px #009ae3, 0 0.6rem 1.5rem rgba(0, 154, 227, 0.4);
}
.feedback {
  background: rgba(0, 33, 52, 0.55);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}
.feedback-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: auto;
  bottom: auto;
  padding: 2.5rem 2rem 2rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0px 1.5rem 2.5rem rgba(0, 33, 52, 0.25);
  text-align: center;
  width: 23rem;
  max-width: calc(100% - 2rem);
  animation: popup-zoom-in .5s cubic-bezier(.2, .9, .3, 1.2);
}
.feedback-close {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  bottom: auto;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0.6rem 1.5rem rgba(0, 33, 52, 0.18);
  background: #fff;
  cursor: pointer;
  border-radius: 50%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feedback-close:hover {
  transform: translateX(-50%) rotate(90deg);
  box-shadow: 0 0.8rem 2rem rgba(0, 154, 227, 0.35);
}
.feedback-close img {
  width: 1.2rem;
  height: 1.2rem;
}
.feedback-tel {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  box-shadow: 0 0.5rem 1.2rem rgba(0, 154, 227, 0.25);
  border-radius: 50%;
  background: #E3F0FF;
  margin: 0 auto 1.25rem;
}
.feedback-tel img {
  width: 1.6rem;
  height: 1.6rem;
}
.feedback__title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #002134;
  margin-bottom: 1.5rem;
}
.feedback-form input {
  width: 100%;
  margin-bottom: 0.7rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 2px solid #E3F0FF;
  color: #002134;
  border-radius: 2rem;
  outline: none;
  font-family: 'Google Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  transition: .25s all;
  animation: input-attract 2.4s ease-in-out infinite;
}
.feedback-form input:nth-of-type(2) {
  animation-delay: 0.6s;
}
.feedback-form input:hover,
.feedback-form input:focus {
  animation: none;
  border-color: #009ae3;
  box-shadow: 0 0 0 0.35rem rgba(0, 154, 227, 0.15);
}
.feedback-form input::placeholder {
  color: #6b8aa3;
}
.feedback-form .btn {
  width: 100%;
  height: 3.3rem;
  border: none;
  box-shadow: 0 0.5rem 1.2rem rgba(0, 154, 227, 0.35);
  border-radius: 2rem;
  text-transform: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}
.feedback-form .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btn-shine 3s ease-in-out infinite;
  pointer-events: none;
}
.feedback-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.6rem 1.5rem rgba(0, 154, 227, 0.5);
}
.discount-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 52, 0.55);
  z-index: 10000;
  display: none;
}
.discount-popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 25rem;
  max-width: calc(100% - 2rem);
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  box-shadow: 0px 1.5rem 2.5rem rgba(0, 33, 52, 0.25);
  animation: popup-zoom-in .5s cubic-bezier(.2, .9, .3, 1.2);
}
@keyframes popup-zoom-in {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.discount-popup__close {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0.6rem 1.5rem rgba(0, 33, 52, 0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.discount-popup__close:hover {
  transform: translateX(-50%) rotate(90deg);
  box-shadow: 0 0.8rem 2rem rgba(0, 154, 227, 0.35);
}
.discount-popup__close img {
  width: 1.2rem;
  height: 1.2rem;
}
.discount-popup__logo {
  width: 11rem;
  margin: 0 auto 1.25rem;
}
.discount-popup__logo img {
  width: 100%;
  display: block;
}
.discount-popup__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 120%;
  color: #002134;
  margin-bottom: 1.5rem;
}
.discount-popup__form input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 2px solid #E3F0FF;
  border-radius: 2rem;
  color: #002134;
  outline: none;
  margin-bottom: .75rem;
  font-family: 'Google Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  transition: .25s all;
  animation: input-attract 2.4s ease-in-out infinite;
}
.discount-popup__form input:nth-of-type(2) {
  animation-delay: 0.6s;
}
.discount-popup__form input::placeholder {
  color: #6b8aa3;
}
.discount-popup__form input:hover,
.discount-popup__form input:focus {
  animation: none;
  border-color: #009ae3;
  box-shadow: 0 0 0 0.35rem rgba(0, 154, 227, 0.15);
}
@keyframes input-attract {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 154, 227, 0);
    border-color: #E3F0FF;
  }
  50% {
    box-shadow: 0 0 0 0.45rem rgba(0, 154, 227, 0.18);
    border-color: rgba(0, 154, 227, 0.6);
  }
}
.discount-popup__btn {
  width: 100%;
  height: 3.5rem;
  border: none;
  border-radius: 2rem;
  margin-top: .5rem;
  font-size: 1rem;
  text-transform: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.discount-popup__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btn-shine 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-shine {
  0% {
    left: -75%;
  }
  60%, 100% {
    left: 175%;
  }
}
.discount-popup__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 0.6rem 1.5rem rgba(0, 154, 227, 0.4);
}
.discount-popup__policy {
  margin-top: 1rem;
  font-size: 0.7rem;
  line-height: 130%;
  color: #6b8aa3;
}
@media (max-width: 767.98px) {
  .discount-popup__content {
    padding: 2rem 1.5rem 1.5rem;
    width: calc(100% - 2rem);
  }
  .discount-popup__close {
    top: -3.5rem;
    right: 0;
  }
  .discount-popup__title {
    font-size: 1.3rem;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  color: #fff;
  background: rgba(0, 33, 52, 0.25);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background .35s ease, color .35s ease, padding .35s ease, box-shadow .35s ease, border-color .35s ease;
  animation: header-slide-down .6s cubic-bezier(.2, .8, .3, 1.1);
}
@keyframes header-slide-down {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(0, 154, 227, 0.08);
  box-shadow: 0 0.4rem 1.5rem rgba(0, 33, 52, 0.08);
  color: #002134;
  padding: 0.5rem 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header__logo {
  width: 11rem;
  flex-shrink: 0;
  transition: .3s transform;
  position: relative;
  display: block;
}
.header__logo:hover {
  transform: scale(1.03);
}
.header__logo img {
  width: 100%;
  display: block;
  transition: opacity .35s ease;
}
.header__logo--dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.header.scrolled .header__logo--light {
  opacity: 0;
}
.header.scrolled .header__logo--dark {
  opacity: 1;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header__lang {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  padding: 0.25rem;
  backdrop-filter: blur(10px);
  transition: .3s all;
}
.header.scrolled .header__lang {
  background: #f0f7fc;
  border-color: #e3f0ff;
}
.header__lang-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.2rem;
  height: 1.8rem;
  border-radius: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: inherit;
  transition: .25s all;
}
.header__lang-item.active {
  background: #009ae3;
  color: #fff;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 154, 227, 0.35);
}
.header__lang-item:not(.active):hover {
  background: rgba(255, 255, 255, 0.15);
}
.header.scrolled .header__lang-item:not(.active):hover {
  background: rgba(0, 154, 227, 0.08);
}
.header-tel {
  display: flex;
  align-items: center;
  color: inherit;
  transition: .25s opacity;
}
.header-tel:hover {
  opacity: 0.8;
}
.header-tel__img {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #009ae3;
  margin-right: 0.7rem;
  flex-shrink: 0;
  box-shadow: 0 0.3rem 0.8rem rgba(0, 154, 227, 0.4);
  position: relative;
}
.header-tel__img::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #009ae3;
  animation: tel-ring 2s infinite;
}
@keyframes tel-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.header-tel__img img {
  width: 1.1rem;
  height: 1.1rem;
  filter: brightness(0) invert(1);
}
.header-tel__text {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.1;
}
.header-tel__text span {
  font-weight: 400;
  font-size: 0.7rem;
  display: block;
  margin-top: 0.15rem;
  opacity: 0.75;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.6rem;
  padding: 0 1.5rem;
  background: #009ae3;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 2rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0.4rem 1rem rgba(0, 154, 227, 0.35);
  transition: .25s all;
}
.header__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btn-shine 3s ease-in-out infinite;
  pointer-events: none;
}
.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.6rem 1.2rem rgba(0, 154, 227, 0.5);
  color: #fff;
}
.main {
  height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: #002134;
}
.main__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.main__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.main .container {
  position: relative;
  z-index: 2;
}
.main-content {
  max-width: 42rem;
}
.main__title {
  font-weight: 600;
  font-size: 2.9rem;
  line-height: 120%;
  margin-bottom: 1rem;
}
.main__text {
  font-size: 1.1rem;
  line-height: 137.5%;
  margin-bottom: 2.5rem;
}
.main-btns {
  display: flex;
}
.main__btn {
  height: 3.5rem;
  width: 15.75rem;
  position: relative;
  overflow: hidden;
}
.main__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btn-shine 3s ease-in-out infinite;
  pointer-events: none;
}
.main__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px .2rem 0px #009ae3, 0 0.6rem 1.5rem rgba(0, 154, 227, 0.4);
}
.main__btn-white {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  width: 13.5rem;
  height: 3.7rem;
  margin-left: 1.5rem;
  box-shadow: none;
}
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 0.7rem 1.4rem 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4rem;
  box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.18);
  animation: hero-trust-pop .6s cubic-bezier(.2, .8, .3, 1.1) .4s backwards;
}
@keyframes hero-trust-pop {
  from {
    opacity: 0;
    transform: translateY(0.8rem) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hero-trust__avatars {
  display: flex;
  flex-shrink: 0;
}
.hero-trust__avatar {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 2px solid #fff;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  position: relative;
}
.hero-trust__avatar:not(:first-child) {
  margin-left: -0.7rem;
}
.hero-trust__avatar:nth-child(1) {
  background-image: url(../img/clients/1.jpg);
  background-color: #ff8a65;
}
.hero-trust__avatar:nth-child(2) {
  background-image: url(../img/clients/2.jpg);
  background-color: #4dd0e1;
}
.hero-trust__avatar:nth-child(3) {
  background-image: url(../img/clients/3.jpg);
  background-color: #ba68c8;
}
.hero-trust__avatar:nth-child(4) {
  background-image: url(../img/clients/4.jpg);
  background-color: #ffb74d;
}
.hero-trust__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-trust__rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
}
.hero-trust__score {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.25);
}
.hero-trust__divider {
  width: 1px;
  height: 0.95rem;
  background: rgba(255, 255, 255, 0.4);
}
.hero-trust__stars {
  color: #FFB800;
  font-size: 0.95rem;
  letter-spacing: 0.08rem;
  line-height: 1;
}
.hero-trust__text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.95;
  line-height: 1.2;
}
.main__btn-white::before {
  animation-delay: 1.5s;
}
.main__btn-white:hover {
  box-shadow: 0 0.6rem 1.5rem rgba(255, 255, 255, 0.25);
}
.discounts {
  padding-top: 5rem;
}
.discounts-content {
  display: flex;
  justify-content: space-between;
}
.discounts-item {
  width: 32%;
  background: linear-gradient(135deg, #009ae3 0%, #0079b3 100%);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: .35s all;
  box-shadow: 0 1rem 2rem rgba(0, 154, 227, 0.18);
}
.discounts-item::before {
  content: '%';
  position: absolute;
  right: -1.5rem;
  bottom: -3rem;
  font-size: 11rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
}
.discounts-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 2.5rem rgba(0, 154, 227, 0.35);
}
.discounts-item__percent {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}
.discounts-item__label {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}
.discounts-item__text {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.problems {
  padding-top: 4.8rem;
  position: relative;
}
.problems::after {
  width: 100%;
  height: 85%;
  background: #F7FCFF;
  content: '';
  left: 0;
  top: 0;
  z-index: -3;
  position: absolute;
}
.problems-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.problems-item {
  position: relative;
  padding-left: 1rem;
  width: 22%;
  margin-right: 3%;
  margin-bottom: 3rem;
}
.problems-item:nth-child(4n) {
  margin-right: 0;
}
.problems-item:hover::before {
  border: 2px solid #009ae3;
}
.problems-item:hover .problems-item__img img {
  filter: drop-shadow(20px 30px 50px rgba(0, 154, 227, 0.3));
}
.problems-item::before {
  content: '';
  width: 11rem;
  height: 90%;
  border-radius: 1.5rem;
  border: 1px solid #CECECE;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}
.problems-item::after {
  content: '';
  bottom: 0;
  left: 50%;
  z-index: -1;
  background: radial-gradient(circle at center, #f6fcff, rgba(246, 252, 255, 0.7));
  width: 5rem;
  position: absolute;
  height: 5rem;
}
.problems-item__img {
  width: 6.8rem;
  height: 6.8rem;
  margin-bottom: 1.5rem;
}
.problems-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(20px 30px 50px #e0e0e0);
  transition: .4s all;
}
.problems-item__text {
  padding-left: 1rem;
  padding-bottom: 1.7rem;
  font-size: 0.8rem;
  line-height: 140%;
  position: relative;
  z-index: 2;
  max-width: 12.5rem;
}
.problems-feedback {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.problems-feedback__img {
  width: 48.5%;
  display: flex;
}
.problems-feedback__img img,
.problems-feedback__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  display: block;
}
.services {
  padding-top: 5rem;
}
.services-content {
  display: flex;
  flex-wrap: wrap;
}
.services-item {
  width: 31.5%;
  margin-right: 2.75%;
  margin-bottom: 2rem;
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 33, 52, 0.08);
  transition: transform .4s ease, box-shadow .4s ease;
}
.services-item:nth-child(3n) {
  margin-right: 0;
}
.services-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.2rem 2.5rem rgba(0, 33, 52, 0.22);
}
.services-item:hover .services-item__img img {
  transform: scale(1.06);
}
.services-item:hover .services-item__wrap {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 154, 227, 0.5) 40%, rgba(0, 33, 52, 0.95) 100%);
}
.services-item:hover .services-item__link {
  opacity: 1;
  transform: translateX(0);
}
.services-item:hover .services-item__link img {
  transform: translateX(0.4rem);
}
.services-item__img {
  height: 17rem;
  overflow: hidden;
}
.services-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.services-item__wrap {
  position: absolute;
  inset: 0;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 33, 52, 0.5) 55%, rgba(0, 33, 52, 0.9) 100%);
  transition: background .4s ease;
}
.services-item__name {
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.services-item__link {
  align-items: center;
  font-size: 0.8rem;
  display: inline-flex;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: opacity .35s ease, transform .35s ease;
  cursor: pointer;
}
.services-item__link span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 0.1rem;
}
.services-item__link img {
  width: 0.9rem;
  height: 0.9rem;
  margin-left: 0.6rem;
  filter: brightness(0) invert(1);
  transition: transform .3s ease;
}
.advantages {
  padding-top: 3rem;
  margin-bottom: 2rem;
}
.advantages-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.advantages-item {
  margin-bottom: 2rem;
  display: flex;
  width: 48.5%;
}
.advantages-item__img {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #009ae3;
  width: 5rem;
  height: 5rem;
  border-radius: .5rem;
  box-shadow: 0px 10px 30px rgba(0, 154, 227, 0.35);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: advantages-float 3.5s ease-in-out infinite;
  transition: .35s all;
  cursor: pointer;
}
.advantages-item:nth-child(2) .advantages-item__img { animation-delay: 0.3s; }
.advantages-item:nth-child(3) .advantages-item__img { animation-delay: 0.6s; }
.advantages-item:nth-child(4) .advantages-item__img { animation-delay: 0.9s; }
.advantages-item:nth-child(5) .advantages-item__img { animation-delay: 1.2s; }
.advantages-item:nth-child(6) .advantages-item__img { animation-delay: 1.5s; }
.advantages-item:nth-child(7) .advantages-item__img { animation-delay: 1.8s; }
.advantages-item:nth-child(8) .advantages-item__img { animation-delay: 2.1s; }
.advantages-item:hover .advantages-item__img {
  animation-play-state: paused;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0px 15px 35px rgba(0, 154, 227, 0.55);
}
.advantages-item:hover .advantages-item__img img {
  transform: scale(1.1);
}
.advantages-item__img img {
  width: 3rem;
  height: 3rem;
  transition: .35s transform;
}
@keyframes advantages-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5rem);
  }
}
.advantages-item__body {
  padding: 0 2rem 0 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 5.4rem;
  line-height: 1.3;
  border: 1px solid #009ae3;
  border-radius: .75rem;
  margin-left: -1.7rem;
  margin-top: 2rem;
  width: 100%;
}
.advantages-item__title {
  font-weight: 700;
  font-size: 1rem;
  color: #002134;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.advantages-item__text {
  font-size: 0.85rem;
  color: #6b8aa3;
  line-height: 1.35;
}
.consult {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  background: #002134;
}
.consult__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.consult .container {
  position: relative;
  z-index: 2;
}
.reviews {
  padding: 5rem 0;
}
.reviews-content {
  display: flex;
}
.reviews-item {
  width: 23.5%;
  margin-right: 2%;
  position: relative;
}
.reviews-item:hover .reviews-item__zoom {
  opacity: 1;
}
.reviews-item:nth-child(4n) {
  margin-right: 0;
}
.reviews-item__img img {
  width: 100%;
}
.reviews-item__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
  transition: .4s all;
  opacity: 0;
}
.reviews-item__zoom img {
  width: 3.5rem;
  height: 3.5rem;
}
.reviews-zoom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  cursor: pointer;
  display: none;
}
.reviews-zoom img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 90vh;
  max-width: 85vw;
  object-fit: contain;
}
.restart {
  background: #F6FCFF;
  padding: 5rem 0;
}
.restart-item {
  display: flex;
}
.restart-item:first-child {
  padding-left: 4rem;
  align-items: flex-end;
}
.restart-item:first-child .section__title {
  padding: 4rem 2rem 3.5rem 3rem;
  border-top-left-radius: 1.5rem;
  border-top: 1px solid #CECECE;
  border-left: 1px solid #CECECE;
  font-size: 2.2rem;
  margin-bottom: 0;
}
.restart-item:first-child .restart__img {
  width: 50%;
  border-radius: 2rem 2rem 2rem 0;
}
.restart-item:last-child {
  padding-right: 4rem;
  align-items: flex-start;
}
.restart-item:last-child .restart-list {
  padding: 3rem;
  border-bottom-right-radius: 1.5rem;
  border-bottom: 1px solid #CECECE;
  border-right: 1px solid #CECECE;
}
.restart-item:last-child .restart-list li {
  margin-bottom: 1.5rem;
  line-height: 140%;
  padding-left: 3rem;
  position: relative;
}
.restart-item:last-child .restart-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: url(../img/check.svg) center center no-repeat;
  background-size: contain;
  content: '';
}
.restart-item:last-child .restart__img {
  width: 56%;
  border-radius: 2rem 0 2rem 2rem;
}
.restart__img {
  flex-shrink: 0;
  overflow: hidden;
}
.restart__img img {
  width: 100%;
  display: block;
}
.types {
  padding: 5rem 0 3rem;
}
.types .section__title {
  max-width: 40rem;
}
.types-content {
  display: flex;
}
.types-item {
  width: 31.5%;
  margin-right: 2.75%;
  border: 1px solid #CECECE;
  border-radius: 1.5rem;
  padding: 3rem 4rem;
  text-align: center;
  position: relative;
}
.types-item:last-child {
  margin-right: 0;
}
.types-item:hover {
  border-color: #009ae3;
}
.types-item:hover .types-item__link {
  color: #009ae3;
}
.types-item__img {
  margin-bottom: 1.5rem;
}
.types-item__img img {
  width: 100%;
  display: block;
  filter: drop-shadow(3px 2px 25px rgba(0, 0, 0, 0.25));
}
.types-item__name {
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.types-item__text {
  line-height: 140%;
  margin-left: -3rem;
  margin-right: -3rem;
  margin-bottom: 3rem;
}
.types-item__link {
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3rem;
}
.faq {
  padding: 3rem 0;
  background: #F7FCFF;
}
.faq .section__title {
  max-width: 38rem;
}
.faq-content {
  max-width: 46rem;
  margin: 0 auto;
}
.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #cecece;
  cursor: pointer;
  user-select: none;
}
.faq-item:first-child {
  border-top: 1px solid #cecece;
}
.faq-item__quest {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 400;
  align-items: center;
}
.faq-item__ico {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #E3F0FF;
  position: relative;
  flex-shrink: 0;
  margin-left: 1.5rem;
}
.faq-item__ico::before,
.faq-item__ico::after {
  content: '';
  background: #009ae3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__ico::before {
  width: 0.7rem;
  height: 0.1rem;
}
.faq-item__ico::after {
  height: 0.7rem;
  width: 0.1rem;
}
.faq-item__ico.active {
  background: #009ae3;
}
.faq-item__ico.active::after {
  display: none;
}
.faq-item__ico.active::before {
  background-color: #fff;
}
.faq-item__answer {
  margin-top: 1rem;
  line-height: 140%;
  display: none;
}
.location {
  padding: 5rem 0;
}
.location .container {
  display: flex;
  justify-content: space-between;
}
.location-map {
  box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  overflow: hidden;
  width: 48.5%;
  height: 23.5rem;
}
.location-map #map {
  width: 100%;
  height: 100%;
}
.footer {
  border-top: 1px solid #D3EFFF;
  padding: 1rem 0;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  width: 14rem;
}
.footer__logo img {
  width: 100%;
}
.footer-info {
  display: flex;
  align-items: center;
}
.footer-info__item {
  margin-right: 3rem;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
}
.footer-info__item img {
  width: 1.5rem;
  margin-right: 0.5rem;
}
.footer-info__item:last-child {
  margin-right: 0;
}
.footer-btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: .75rem;
  height: 3.5rem;
}
.footer-btn__top {
  border: 1px solid #cecece;
  width: 3.5rem;
}
.footer-btn__top img {
  width: 0.7rem;
}
@media (max-width: 1500.98px) {
  :root {
    font-size: 15px;
  }
}
@media (max-width: 1200.98px) {
  :root {
    font-size: 13px;
  }
}
@media (max-width: 1080px) and (orientation: landscape) {
  .main {
    height: 35rem;
  }
}
@media (max-width: 992.98px) {
  :root {
    font-size: 15px;
  }
  body {
    padding-bottom: 4.8rem;
  }
  .tel-popup {
    display: none;
  }
  .section-feedback__form {
    width: 60%;
  }
  .mobile-fixed {
    display: flex;
    position: fixed;
    bottom: 0.7rem;
    left: 0.7rem;
    right: 0.7rem;
    width: auto;
    z-index: 600;
    gap: 0.7rem;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .mobile-fixed a {
    flex: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 3.4rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, #00b4ff 0%, #009ae3 100%);
    box-shadow: 0 0.6rem 1.4rem rgba(0, 154, 227, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .mobile-fixed a:active {
    transform: scale(0.96);
    box-shadow: 0 0.3rem 0.8rem rgba(0, 154, 227, 0.35);
  }
  .mobile-fixed a:last-child {
    background: linear-gradient(135deg, #009ae3 0%, #0079b3 100%);
  }
  .mobile-fixed a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: btn-shine 3s ease-in-out infinite;
    pointer-events: none;
  }
  .mobile-fixed a:last-child::before {
    animation-delay: 1.5s;
  }
  .mobile-fixed a img {
    width: 1.4rem;
    height: 1.4rem;
    margin-right: 0.6rem;
  }
  .mobile-fixed a:first-child img {
    animation: tel-wiggle 2.4s infinite;
    transform-origin: center;
  }
  @keyframes tel-wiggle {
    0%, 88%, 100% {
      transform: rotate(0);
    }
    90% { transform: rotate(-18deg); }
    92% { transform: rotate(16deg); }
    94% { transform: rotate(-14deg); }
    96% { transform: rotate(12deg); }
    98% { transform: rotate(-8deg); }
  }
  .header-tel {
    display: none;
  }
  .header__logo {
    width: 8.5rem;
  }
  .header__cta {
    height: 2.4rem;
    padding: 0 1.2rem;
    font-size: 0.8rem;
  }
  .problems {
    padding-top: 3.5rem;
  }
  .problems-item {
    width: 32%;
    margin-right: 2%;
  }
  .problems-item:nth-child(4n) {
    margin-right: 2%;
  }
  .problems-item:nth-child(3n) {
    margin-right: 0;
  }
  .services {
    padding-top: 3.5rem;
  }
  .services-content {
    justify-content: space-between;
  }
  .services-item {
    margin-right: 0;
    width: 48%;
  }
  .advantages-item {
    width: 70%;
  }
  .reviews {
    padding: 3.5rem 0;
  }
  .restart {
    padding: 3.5rem 0 0;
  }
  .restart-item {
    display: block;
  }
  .restart-item:first-child {
    padding: 0;
  }
  .restart-item:first-child .section__title {
    padding: 0;
    border: none;
    margin-bottom: 2rem;
  }
  .restart-item:first-child .restart__img {
    display: none;
  }
  .restart-item:last-child {
    padding: 0;
  }
  .restart-item:last-child .restart__img {
    width: 100%;
    border-radius: 2rem;
  }
  .restart-item:last-child .restart-list {
    border: none;
  }
  .types {
    padding-top: 3.5rem;
  }
  .types-item {
    padding: 2rem;
  }
  .types-item__text {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .location {
    padding: 3.5rem 0;
  }
  .location .container {
    display: block;
  }
  .location-map {
    width: 100%;
    margin-bottom: 2rem;
  }
  .location .section-feedback__form {
    margin: 0 auto;
  }
  .footer {
    padding: 2rem 0;
  }
  .footer .container {
    display: block;
  }
  .footer__logo {
    margin-bottom: 1.5rem;
  }
  .footer-info {
    margin-bottom: 1.5rem;
    justify-content: space-between;
  }
  .footer-btn {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 767.98px) {
  /* ========== iOS-STYLE MOBILE ========== */
  :root {
    font-size: 14px;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #f7f9fc;
    overscroll-behavior-y: contain;
  }
  /* iOS-style buttons - tap feedback */
  .btn,
  .feedback-open,
  a[href^="tel"],
  a[href="#"],
  button {
    -webkit-tap-highlight-color: transparent;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .btn:active,
  button:active {
    transform: scale(0.97);
  }
  /* iOS scroll-snap for horizontal lists - within container grid */
  .problems-content,
  .services-content,
  .reviews-content,
  .discounts-content {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .problems-content::-webkit-scrollbar,
  .services-content::-webkit-scrollbar,
  .reviews-content::-webkit-scrollbar,
  .discounts-content::-webkit-scrollbar {
    display: none;
  }
  .problems-item,
  .services-item,
  .reviews-item,
  .discounts-item {
    scroll-snap-align: start;
  }
  /* Section titles - iOS large title style */
  .section__title {
    font-size: 1.85rem;
    text-align: left;
    padding: 0;
    margin-bottom: 1.4rem;
    letter-spacing: -0.025em;
    line-height: 1.15;
  }
  /* HERO - card style with rounded bottom */
  .main {
    height: 80vh;
    border-radius: 0 0 1.8rem 1.8rem;
  }
  .main__title {
    font-size: 1.9rem;
    letter-spacing: -0.025em;
    line-height: 1.15;
  }
  .main__text {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
  }
  .main__btn {
    border-radius: 1.4rem;
    height: 3.2rem;
  }
  .main__btn-white {
    margin-top: 0.8rem;
    height: 3.2rem;
  }
  .hero-trust {
    margin-top: 1.5rem;
    padding: 0.55rem 1rem 0.55rem 0.7rem;
    gap: 0.7rem;
  }
  .hero-trust__avatar {
    width: 1.9rem;
    height: 1.9rem;
  }
  .hero-trust__avatar:not(:first-child) {
    margin-left: -0.55rem;
  }
  .hero-trust__score {
    font-size: 1.1rem;
  }
  .hero-trust__stars {
    font-size: 0.85rem;
  }
  .hero-trust__text {
    font-size: 0.75rem;
  }
  /* DISCOUNTS - iOS gradient cards */
  .discounts-item {
    border-radius: 1.5rem;
    box-shadow: 0 0.6rem 1.8rem rgba(0, 154, 227, 0.22);
  }
  /* PROBLEMS - softer cards */
  .problems-item {
    width: 14rem;
    margin-right: 1rem !important;
    padding: 1rem;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 0.3rem 1.2rem rgba(0, 33, 52, 0.05);
  }
  .problems-item::before,
  .problems-item::after {
    display: none;
  }
  .problems-item__text {
    padding-left: 0;
    padding-bottom: 0;
    max-width: none;
  }
  /* SERVICES - iOS 2-column grid */
  .services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    flex-wrap: wrap;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    margin: 0;
    max-width: none;
  }
  .services-item {
    width: auto !important;
    margin: 0 !important;
    flex-shrink: 1;
    border-radius: 1rem;
    scroll-snap-align: none;
    box-shadow: 0 0.3rem 1rem rgba(0, 33, 52, 0.08);
  }
  .services-item__img {
    height: 10rem;
  }
  .services-item__wrap {
    padding: 0.85rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 33, 52, 0.55) 50%, rgba(0, 33, 52, 0.92) 100%);
  }
  .services-item__name {
    font-size: 0.85rem;
    line-height: 1.25;
    margin-bottom: 0;
    font-weight: 600;
  }
  .services-item__link {
    display: none;
  }
  /* ADVANTAGES - iOS list cells */
  .advantages-content {
    display: block;
    flex-wrap: wrap;
    max-width: none;
    overflow: visible;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 0.3rem 1.5rem rgba(0, 33, 52, 0.05);
    padding: 0.5rem;
    margin: 0;
    scroll-snap-type: none;
  }
  .advantages-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0.9rem 0.8rem;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 33, 52, 0.05);
    flex-shrink: 1;
  }
  .advantages-item:last-child {
    border-bottom: none;
  }
  .advantages-item__img {
    width: 3rem;
    height: 3rem;
    box-shadow: 0 0.3rem 0.8rem rgba(0, 154, 227, 0.3);
  }
  .advantages-item__img img {
    width: 1.6rem;
    height: 1.6rem;
  }
  .advantages-item__body {
    height: auto;
    border: none;
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
  }
  .advantages-item__title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: #002134;
  }
  .advantages-item__text {
    height: auto;
    border: none;
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
    line-height: 1.35;
    color: #6b8aa3;
  }
  /* TYPES - iOS cards */
  .types-item {
    border-radius: 1.5rem;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 33, 52, 0.05);
    border: none;
  }
  /* FAQ - iOS settings cell style */
  .faq {
    background: transparent;
  }
  .faq-content {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 0.3rem 1.5rem rgba(0, 33, 52, 0.05);
    padding: 0 1.2rem;
  }
  .faq-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 33, 52, 0.06);
  }
  .faq-item:first-child {
    border-top: none;
  }
  .faq-item:last-child {
    border-bottom: none;
  }
  .faq-item__quest {
    font-size: 1rem;
    font-weight: 500;
  }
  /* FEEDBACK POPUP - iOS bottom sheet */
  .feedback-content {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translate(0, 0);
    width: 100%;
    max-width: none;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 2.2rem 1.5rem 1.8rem;
    animation: popup-bottom-sheet .45s cubic-bezier(.32, .72, 0, 1);
  }
  .feedback-content::before {
    content: '';
    position: absolute;
    top: 0.7rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 0.3rem;
    background: rgba(0, 33, 52, 0.15);
    border-radius: 2rem;
  }
  .feedback-close {
    top: 1rem;
    right: 1rem;
    left: auto;
    transform: none;
    width: 2rem;
    height: 2rem;
    background: rgba(0, 33, 52, 0.06);
    box-shadow: none;
  }
  .feedback-close:hover {
    transform: rotate(90deg);
  }
  .feedback-close img {
    width: 0.85rem;
    height: 0.85rem;
  }
  .feedback__title {
    font-size: 1.35rem;
  }
  /* DISCOUNT POPUP - iOS bottom sheet */
  .discount-popup__content {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translate(0, 0);
    width: 100%;
    max-width: none;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 2.2rem 1.5rem 1.8rem;
    animation: popup-bottom-sheet .45s cubic-bezier(.32, .72, 0, 1);
  }
  @keyframes popup-bottom-sheet {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  .discount-popup__content::before {
    content: '';
    position: absolute;
    top: 0.7rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 0.3rem;
    background: rgba(0, 33, 52, 0.15);
    border-radius: 2rem;
  }
  .discount-popup__close {
    top: 1rem;
    right: 1rem;
    left: auto;
    transform: none;
    width: 2rem;
    height: 2rem;
    background: rgba(0, 33, 52, 0.06);
    box-shadow: none;
  }
  .discount-popup__close:hover {
    transform: rotate(90deg);
  }
  .discount-popup__close img {
    width: 0.85rem;
    height: 0.85rem;
  }
  /* FORMS - iOS native input */
  .section-feedback__form {
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 0.4rem 1.8rem rgba(0, 33, 52, 0.06);
  }
  .section-feedback__input input {
    border-radius: 1rem;
    padding: 1.1rem 1.3rem;
    background: #f0f3f7;
    border: 2px solid transparent;
    font-size: 1rem;
  }
  .section-feedback__btn {
    border-radius: 1.2rem;
  }
  /* FOOTER - rounded top */
  .footer {
    background: #fff;
    border-radius: 1.5rem 1.5rem 0 0;
    border-top: none;
    box-shadow: 0 -0.3rem 1.5rem rgba(0, 33, 52, 0.04);
    margin-top: 1rem;
  }
  /* iOS scroll fade-in animation */
  .ios-fade {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity .55s ease, transform .55s cubic-bezier(.2, .8, .3, 1);
  }
  .ios-fade.in {
    opacity: 1;
    transform: translateY(0);
  }
  .header {
    padding: 0.7rem 0;
  }
  .header .container {
    gap: 0.7rem;
  }
  .header-nav {
    gap: 0.7rem;
  }
  .header__logo {
    width: 7.5rem;
  }
  .header__lang-item {
    width: 2rem;
    height: 1.6rem;
    font-size: 0.7rem;
  }
  .header__cta {
    height: 2.2rem;
    padding: 0 1rem;
    font-size: 0.75rem;
  }
  .section__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .discounts-content {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow: auto;
    padding: 0.5rem 0;
  }
  .discounts-item {
    width: 17rem;
    flex-shrink: 0;
    margin-right: 1rem;
    padding: 2rem 1.5rem;
  }
  .discounts-item:last-child {
    margin-right: 0;
  }
  .discounts-item__percent {
    font-size: 3.5rem;
  }
  .section-feedback__form {
    width: 100%;
    padding: 1.7rem;
  }
  .main__title {
    font-size: 2rem;
  }
  .main-btns {
    display: block;
  }
  .main__btn {
    width: 100%;
  }
  .main__btn-white {
    margin-left: 0;
    margin-top: 1.5rem;
  }
  .problems-content {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow: auto;
    margin-bottom: 0;
    padding: 1.5rem 0;
  }
  .problems-item {
    margin-right: 2rem !important;
    width: 13rem;
    flex-shrink: 0;
  }
  .problems-feedback__img {
    display: none;
  }
  .consult {
    padding: 17rem 0 3rem;
    background: #f6fcff;
  }
  .consult__video {
    height: 15rem;
    border-radius: 0 0 1.5rem 1.5rem;
  }
  .reviews-content {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow: auto;
    margin-bottom: 0;
  }
  .reviews-item {
    margin-right: 2rem !important;
    width: 17rem;
    flex-shrink: 0;
  }
  .types-content {
    display: block;
  }
  .types-item {
    margin-right: 0;
    width: 100%;
    margin-bottom: 2rem;
  }
  .types-item__text {
    margin-bottom: 4rem;
  }
  .types-item__link {
    bottom: 2rem;
  }
  .faq-item__quest {
    font-size: 1.1rem;
  }
  .faq-item__answer {
    font-size: 0.9rem;
  }
  .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-info {
    display: block;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .footer-info__item {
    margin-bottom: .5rem;
    margin-right: 0;
    justify-content: center;
  }
}
@media (max-width: 327.98px) {
  :root {
    font-size: 12px;
  }
}
@media (max-width: 300.98px) {
  :root {
    font-size: 11px;
  }
}
