.overlay {
      position: fixed;
      inset: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      visibility: hidden;
      opacity: 0;
      background: rgba(27, 41, 179, 0.45);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: opacity 0.4s ease, visibility 0.4s ease;
      z-index: 10050;
      touch-action: none;
      overscroll-behavior: contain;
      pointer-events: none;
    }

.overlay.active {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
    }

html.popup-open,
    html.popup-open body {
      overflow: hidden;
      overscroll-behavior: none;
    }

html.popup-scroll-lock,
    html.popup-scroll-lock body {
      overflow: hidden;
      overscroll-behavior: none;
    }

html.popup-open .nav,
    html.popup-open .wa-fix {
      visibility: hidden !important;
      pointer-events: none !important;
    }

html.warranty-open .nav,
    html.warranty-open .wa-fix {
      visibility: hidden !important;
      pointer-events: none !important;
    }

body.menu-open .wa-fix {
      visibility: hidden !important;
      pointer-events: none !important;
    }

.popup {
      width: 85%;
      max-width: 42.5rem;
      min-height: 14rem;
      background: #FFDE21;
      border-radius: 25px;
      padding: 3rem 2.5rem 2.5rem;
      color: #1b29b3;
      position: relative;
      transform: scale(0.6);
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

.overlay.active .popup {
      animation: impactOpen 0.5s cubic-bezier(0.22, 1.3, 0.5, 1) forwards;
    }

.overlay.closing .popup {
      animation: impactClose 0.4s cubic-bezier(0.55, 0.01, 0.75, 0.35) forwards;
    }

@keyframes impactOpen {
      0% {
        transform: scale(0.6);
      }

      60% {
        transform: scale(1.08);
      }

      80% {
        transform: scale(0.96);
      }

      100% {
        transform: scale(1);
      }
    }

@keyframes impactClose {
      0% {
        transform: scale(1);
      }

      40% {
        transform: scale(1.08);
      }

      100% {
        transform: scale(0.5);
      }
    }

.close-btn {
      position: absolute;
      top: 15px;
      left: 15px;
      background: transparent;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      color: #1b29b3;
      transition: opacity 0.2s;
    }

.close-btn:hover {
      opacity: 0.7;
    }

.popup-body {
      display: flex;
      flex-direction: row;
      align-items: center;
      direction: rtl;
      min-height: 9rem;
    }

.popup-title-wrap {
      flex: 0 0 11rem;
      width: 11rem;
      text-align: right;
    }

.popup-text {
      flex: 1 1 0;
      min-width: 0;
      text-align: right;
    }

.popup-text p {
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.85;
      margin: 0;
    }

.popup-divider {
      flex: 0 0 1px;
      width: 1px;
      align-self: stretch;
      min-height: 7rem;
      margin-inline: 1.5rem;
      background: linear-gradient(
        180deg,
        rgba(27, 41, 179, 0) 0%,
        rgba(27, 41, 179, 0.22) 18%,
        rgba(27, 41, 179, 0.22) 82%,
        rgba(27, 41, 179, 0) 100%
      );
    }

.popup-title-wrap h2,
.popup h2 {
      margin: 0;
      font-size: 1.625rem;
      font-weight: 800;
      line-height: 1.35;
    }

@media (max-width: 600px) {
.popup {
        width: 92%;
        max-width: none;
        min-height: 12rem;
        padding: 3.5rem 1.5rem 2rem;
        border-radius: 20px;
      }

.popup-body {
        display: flex;
        flex-direction: column;
        direction: rtl;
        gap: 1.125rem;
        min-height: 0;
        align-items: center;
        text-align: center;
      }

.popup-title-wrap {
        order: 1;
        flex: none;
        width: 100%;
        max-width: none;
        text-align: center;
      }

.popup-divider {
        order: 2;
        flex: none;
        width: 88%;
        max-width: 20rem;
        height: 1px;
        min-height: 0;
        margin-inline: 0;
        background: linear-gradient(
          90deg,
          rgba(27, 41, 179, 0) 0%,
          rgba(27, 41, 179, 0.2) 20%,
          rgba(27, 41, 179, 0.2) 80%,
          rgba(27, 41, 179, 0) 100%
        );
      }

.popup-text {
        order: 3;
        flex: none;
        text-align: center;
        width: 100%;
      }

.popup-title-wrap h2,
.popup h2 {
        font-size: 1.375rem;
      }

.popup-text p {
        font-size: 0.9375rem;
        font-weight: 500;
      }
}

.ask-box {
          width: 100%;
        }

.ask-inner {
          width: 100%;
          max-width: 850px;
          margin: auto;
        }

.accordions {
          width: 100%;
          background: transparent;
          border-radius: 20px;
          overflow: visible;
        }

.ask-box .acc-item {
          width: 100%;
          box-sizing: border-box;
          background: #fff;
          border-radius: 20px;
          margin-bottom: 15px;
          overflow: hidden;
          opacity: 0;
          transform: translateY(28px);
          transition:
            opacity .95s cubic-bezier(.22, 1, .36, 1),
            transform .95s cubic-bezier(.22, 1, .36, 1),
            box-shadow .3s ease;
        }

.ask-box .acc-item.faq-on {
          opacity: 1;
          transform: translateY(0);
        }

.ask-box .acc-btn {
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: space-between;
          border: 0;
          background: #fff;
          cursor: pointer;
          text-align: right;
          gap: 12px;
          box-sizing: border-box;
          min-height: 88px;
          padding: 28px 44px;
          color: #1b29b3;
        }

.ask-box .acc-btn .title {
          font-size: 1.25rem;
          font-weight: 700;
          flex: 1;
          margin: 0;
          line-height: 1.7;
        }

.ask-box .chev {
          width: 25px;
          height: 25px;
          min-width: 25px;
          flex-shrink: 0;
          margin: 0;
          transition: transform .58s cubic-bezier(.22, 1, .36, 1);
        }

.ask-box .acc-content {
          width: 100%;
          box-sizing: border-box;
          display: grid;
          grid-template-rows: 0fr;
          padding: 0 44px;
          overflow: hidden;
          font-size: 0.875rem;
          line-height: 2.2;
          color: #1b29b3;
          transition:
            grid-template-rows .58s cubic-bezier(.22, 1, .36, 1),
            padding .58s cubic-bezier(.22, 1, .36, 1);
        }

.ask-box .acc-content > p {
          overflow: hidden;
          min-height: 0;
          margin: 0;
          font-weight: 500;
          opacity: 0;
          transform: translateY(-6px);
          transition:
            opacity .42s ease,
            transform .42s cubic-bezier(.22, 1, .36, 1);
        }

.ask-box .acc-content.open {
          grid-template-rows: 1fr;
          padding: 8px 44px 28px 44px;
        }

.ask-box .acc-content.open > p {
          opacity: .88;
          transform: translateY(0);
          transition:
            opacity .48s ease .14s,
            transform .48s cubic-bezier(.22, 1, .36, 1) .14s;
        }

.ask-box .acc-item.open .chev {
          transform: rotate(-180deg);
        }

@media (max-width: 768px) {
.ask-box .acc-btn {
            min-height: 76px;
            padding: 22px 24px;

          }

.ask-box .chev {
            width: 20px;
            height: 20px;
            min-width: 20px;

          }

.ask-box .acc-btn .title {
          font-size: 0.9375rem;
          font-weight: 700;
          line-height: 1.65;
          }

.ask-box .acc-content {
            padding-left: 24px;
            padding-right: 24px;
            font-size: 0.8125rem;
            line-height: 2;
          }

.ask-box .acc-content.open {
            padding: 6px 24px 22px 24px;
          }
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-clip: padding-box;
  font-family: inherit;
}

button:focus,
button:focus-visible,
button:active {
  outline: none;
  box-shadow: none;
}

button::-moz-focus-inner {
  border: 0;
}

.inner-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-box {
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fcfcfc;
  border-radius: 60px;
}

.intro {
  text-align: right;
  max-width: 420px;
}

.intro h1 {
  font-size: 2rem;
  color: #1b29b3;
  margin: 0 0 14px;
  font-weight: 700;
}

.intro p {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 18px;
  color: #1b29b3;
}

.tit-clip {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.tit-clip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f7f7f7;
  transform: translateY(100%);
  transition: transform 1.1s cubic-bezier(.22, .9, .32, 1);
  z-index: 1;

}

.tit-clip.clip-gry::before {
  background: #f4f4f4;
}

.tit-clip.clip-wht::before {
  background: #fcfcfc;
}

.tit-clip.clip-blu::before {
  background: #1b29b3;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  background: #FFDE21;
  color: #1b29b3;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity .15s ease, transform .15s ease;
  cursor: pointer !important;

}

.btn img {
  width: 9px;
  height: 9px;
  object-fit: contain;
  display: block;
}

.intro .btn {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.2s cubic-bezier(.22, .9, .32, 1),
    transform 1.2s cubic-bezier(.22, .9, .32, 1);
}

.intro .btn.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn:active {
  transform: translateY(5px);
}

.intro .btn.visible:active {
  transform: translateY(5px);
  transition: transform .15s ease;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  text-align: right;
}

.stat .num {
  font-weight: 700;
  font-size: 2.875rem;
  color: #1b29b3;
  margin-bottom: 10px;

  letter-spacing: -1px;
}

.stat .label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1b29b3;

}

@media (max-width: 900px) {
.stat-box {
    grid-template-columns: 1fr;
    padding: 45px 45px;
  }

.intro {
    max-width: 100%;
    text-align: right;
    margin-bottom: 40px;
  }

.intro h1 {
    font-size: 1.875rem;
    margin-bottom: 14px;
  }

.intro p {
    font-size: 0.875rem;
    margin-bottom: 22px;
  }

.stats {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

.stat .num {
    font-size: 2.75rem;
  }
}

@media (max-width: 600px) {
.btn {
    display: flex;

    justify-content: center;
    margin: 0 auto;
    text-align: center;
    width: fit-content;
  }
}

@media (min-width: 901px) {
.stats {
    text-align: center;
  }

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
.stat .num {
    font-size: 2.5rem;
  }

.stat .label {
    font-size: 0.875rem;
  }

.intro h1 {
    font-size: 1.375rem;
  }

.intro p {
    font-size: 0.875rem;
  }
}

#warrantyPanel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96%;
  color: #f4f4f4;
  background: #1b29b3;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  z-index: 9999;

  transform: translateY(100%);
  transition: transform .3s ease;

  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

#warrantyPanel.active {
  transform: translateY(0);
}

#warrantyOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(200px);
  z-index: 9998;
  display: none;
}

#warrantyPanel {
  direction: ltr;
}

#warrantyPanel .gar-body {
  direction: rtl;
}

#warrantyOverlay.active {
  display: block;
}

#warrantyClose {
  position: absolute;
  top: 35px;
  left: 30px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

#warrantyClose img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform .25s ease;
  transform-origin: center;
}

#warrantyClose.active {
  opacity: 1;
  pointer-events: auto;
}

#warrantyClose:hover img {
  transform: rotate(90deg);
}

#warrantyPanel .gar-body {

  max-width: 800px;
  margin: 60px auto 40px;

}

#warrantyPanel .gar-body ul {
  margin: 24px 0;
  padding-right: 0;
  list-style: none;
}

#warrantyPanel .gar-body ul li {
  position: relative;
  margin-bottom: 18px;
  padding-right: 26px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #f4f4f4;
}

#warrantyPanel .gar-body ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border: 2px solid #FFDE21;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 10px;
}

#warrantyPanel .gar-body h2 {
  font-size: 1.375rem;
  margin-bottom: 22px;
  color: #FFDE21;
  font-weight: 700;
}

#warrantyPanel .gar-body p {
  color: #f0f0f0;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 18px;
}

#warrantyPanel .gar-body {
  padding-bottom: 50px;
}

@media (max-width: 600px) {
#warrantyPanel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

#warrantyPanel .gar-body {
    padding-left: 20px;
    padding-right: 20px;
  }

#warrantyPanel .gar-body ul li {
    font-size: 0.75rem;

  }

#warrantyPanel .gar-body ul li::before {
    width: 6px;
    height: 6px;
    border-width: 1px;
    top: 10px;
  }

.tit-clip {
    display: block;
    width: 100%;
  }

.tit-line {
    transform: translateY(20px);
  }
}

@media (max-width: 768px) {
.blok-full {
    min-height: auto;

    align-items: flex-start;
    padding: 80px 0;

  }
}

