*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: auto;
  margin: 0;
  min-height: 100%;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  min-width: 320px;
  min-height: 100%;
  background-image: url("img/bg.webp");
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.mockup {
  position: relative;
  z-index: 1;
  height: auto;
  min-height: 0;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  overflow: visible;
}

.product-info {
  background: #071019;
  color: #fff;
  padding: 64px 24px 56px;
}

.product-info__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.product-info__eyebrow {
  margin: 0 0 10px;
  color: #6fb7ff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-info h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
}

.product-info__lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.55;
}

.product-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.product-info__item {
  min-height: 176px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.product-info__item h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.18;
}

.product-info__item p,
.product-info__note {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.5;
}

.product-info__item p {
  margin: 0;
}

.product-info__note {
  max-width: 820px;
  margin: 28px 0 0;
}

.mockup__viewport {
  height: auto;
  min-height: 0;
  overflow: visible;
}

.mockup picture {
  display: block;
}

.mockup__desktop-media {
  display: block;
}

.mockup__mobile-media {
  display: none;
  margin: 0;
  padding: 0;
}

.mockup__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: top;
  -webkit-user-drag: none;
  user-select: none;
}

.hotspots {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.faq {
  position: absolute;
  top: calc(78.55% + 1310px);
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  padding: 54px 24px 72px;
  background: #006bff;
  color: #000;
  pointer-events: none;
}

.faq__inner {
  width: min(1180px, 100%);
  pointer-events: auto;
}

.faq__title {
  margin: 0 0 32px;
  color: #fff;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

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

.faq__item {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 25, 85, 0.18);
}

.faq__question {
  display: grid;
  grid-template-columns: 1fr 58px;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 92px;
  border: 0;
  padding: 24px 28px 24px 34px;
  background: #fff;
  color: #000;
  font: inherit;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.18;
  text-align: left;
  cursor: pointer;
}

.faq__question:focus-visible {
  outline: 4px solid #0b7bff;
  outline-offset: -8px;
}

.faq__icon {
  position: relative;
  display: inline-flex;
  width: 58px;
  height: 58px;
  border: 3px solid #006bff;
  border-radius: 50%;
  background: #f2f7ff;
  transition:
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 520ms ease,
    border-color 520ms ease;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: #006bff;
  transform: translate(-50%, -50%);
  transition:
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 520ms ease,
    background-color 520ms ease;
}

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

.faq__question[aria-expanded="true"] .faq__icon {
  background: #006bff;
  transform: rotate(45deg);
}

.faq__question[aria-expanded="true"] .faq__icon::before,
.faq__question[aria-expanded="true"] .faq__icon::after {
  background: #fff;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height 900ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: max-height, opacity, transform;
}

.faq__question[aria-expanded="true"] + .faq__answer {
  opacity: 1;
  transform: translateY(0);
}

.faq__answer-content {
  padding: 0 34px 30px;
  color: #000;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 500;
  line-height: 1.42;
}

.faq__answer-content p {
  margin: 0;
}

.faq__answer-content p + p {
  margin-top: 10px;
}

.payment-consent {
  position: absolute;
  top: calc(63.95% + 455px);
  left: calc(64.8% + 210px);
  z-index: 4;
  width: 430px;
  color: #fff;
  text-align: left;
  transform: translate(-50%, calc(-100% - 40px));
  pointer-events: none;
}

.payment-consent__error,
.payment-consent__label {
  pointer-events: auto;
}

.payment-consent__error {
  display: none;
  margin: 0 0 6px 34px;
  color: #ffdf3d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.payment-consent__error.is-visible {
  display: block;
}

.payment-consent__label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.payment-consent__label + .payment-consent__label {
  margin-top: 10px;
}

.payment-consent__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.payment-consent__box {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.payment-consent__box::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #006bff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

.payment-consent__checkbox:checked + .payment-consent__box {
  border-color: #fff;
  background: #fff;
}

.payment-consent__checkbox:checked + .payment-consent__box::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.payment-consent__checkbox:focus-visible + .payment-consent__box {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.payment-consent__text {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.payment-consent__text a {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.payment-popup[hidden] {
  display: none;
}

.payment-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  pointer-events: auto;
}

.payment-popup__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(3, 7, 13, 0.58);
  cursor: pointer;
}

.payment-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(380px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
  background: #0b1118;
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.payment-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.payment-popup__title {
  margin: 0 34px 12px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.payment-popup__error {
  display: none;
  margin: 0 0 8px;
  color: #ffdf3d;
  font-size: 12px;
  font-weight: 700;
}

.payment-popup__error.is-visible {
  display: block;
}

.payment-popup__label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  cursor: pointer;
}

.payment-popup__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.payment-popup__box {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
}

.payment-popup__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #006bff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

.payment-popup__checkbox:checked + .payment-popup__box {
  border-color: #fff;
  background: #fff;
}

.payment-popup__checkbox:checked + .payment-popup__box::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.payment-popup__checkbox:focus-visible + .payment-popup__box {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.payment-popup__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.payment-popup__text a {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.payment-popup__submit {
  display: block;
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  background: #006bff;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.payment-popup__submit:disabled {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.58);
  cursor: not-allowed;
}

.legal-footer {
  position: absolute;
  top: calc(78.55% + 1310px + 1328px);
  left: 0;
  right: 0;
  z-index: 4;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  pointer-events: none;
}

.legal-footer a {
  pointer-events: auto;
}

.legal-footer p {
  margin: 0;
}

.legal-footer p + p {
  margin-top: 4px;
}

.legal-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 14px;
}

.scroll-anchor {
  position: absolute;
  top: 59.1%;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.tariff-timer {
  position: absolute;
  top: calc(61.3% + 498px);
  left: calc(67.5% + 10px);
  z-index: 2;
  min-width: 18%;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 57px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  visibility: hidden;
  pointer-events: none;
}

.tariff-timer.is-active {
  visibility: visible;
}

.hotspot {
  position: absolute;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.hotspot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
}

.hotspot--login {
  top: calc(5.3% + 62px);
  left: calc(9% + 82px);
  width: calc(25% - 49px);
  height: calc(1% + 1px);
  border-radius: 30px;
  background: rgba(255, 0, 0, 0);
  box-shadow: none;
}

.hotspot--payment {
  top: calc(63.95% + 440px);
  left: calc(64.8% - 10px);
  width: 455px;
  height: 160px;
  border-radius: 80px;
  background: rgba(255, 0, 0, 0);
  box-shadow: none;
}

.hotspot--payment-mobile {
  display: none;
}

.hotspot--contact {
  top: calc(81.65% + 478px);
  left: calc(34% - 14px);
  width: 630px;
  height: 194px;
  border-radius: 300px;
  background: rgba(255, 0, 0, 0);
  box-shadow: none;
}

@media (max-width: 768px) {
  html,
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-attachment: scroll;
  }

  body {
    position: static;
    background-image: none;
    background-color: #05080d;
    background-attachment: scroll;
  }

  main,
  .mockup,
  .mockup__viewport,
  .mockup_viewport,
  .page,
  .site-wrapper,
  .mockup picture,
  .mockup img {
    position: relative;
    height: auto;
    min-height: 0;
    width: 100%;
    max-height: none;
    max-width: none;
    overflow: visible;
  }

  .mockup img {
    display: block;
    width: 100%;
    height: auto;
  }

  .hotspots {
    display: block !important;
    pointer-events: none !important;
  }

  .hotspots * {
    pointer-events: none !important;
  }

  .payment-consent {
    display: none !important;
  }

  .mockup__desktop-media {
    display: none;
  }

  .mockup__mobile-media {
    display: block;
    position: static;
    height: auto;
    min-height: 0;
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .faq {
    top: 93.45%;
    display: flex !important;
    padding: 30px 14px 38px;
    background: #006bff;
    pointer-events: none;
  }

  .faq__title {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .faq__inner,
  .faq__question {
    pointer-events: auto !important;
  }

  .faq__list {
    gap: 12px;
  }

  .faq__item {
    border-radius: 18px;
  }

  .faq__question {
    grid-template-columns: 1fr 42px;
    gap: 12px;
    min-height: 74px;
    padding: 18px 16px 18px 20px;
    font-size: 18px;
    line-height: 1.2;
  }

  .faq__icon {
    width: 42px;
    height: 42px;
    border-width: 2px;
  }

  .faq__icon::before,
  .faq__icon::after {
    width: 20px;
    height: 3px;
  }

  .faq__answer-content {
    padding: 0 20px 22px;
    font-size: 15px;
    line-height: 1.38;
  }

  .payment-consent {
    top: 84.86%;
    left: 17%;
    width: 66.1%;
    transform: none;
    pointer-events: auto !important;
  }

  .payment-consent,
  .payment-consent * {
    pointer-events: auto !important;
  }

  .payment-consent__error {
    margin: 0 0 4px 26px;
    font-size: 10px;
  }

  .payment-consent__label {
    grid-template-columns: 18px 1fr;
    gap: 8px;
    align-items: start;
  }

  .payment-consent__box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
  }

  .payment-consent__box::after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border-width: 0 2px 2px 0;
  }

  .payment-consent__text {
    font-size: 9px;
    line-height: 1.25;
  }

  .legal-footer {
    top: calc(93.45% + var(--mobile-faq-offset, 920px));
    display: block !important;
    padding: 0 18px;
    font-size: 12px;
    line-height: 1.5;
    transition: top 420ms ease;
    pointer-events: none !important;
  }

  .legal-footer a,
  .legal-footer__links {
    pointer-events: auto !important;
  }

  .legal-footer__links {
    display: grid;
    gap: 6px;
  }

  .scroll-anchor {
    top: 78.9%;
  }

  .tariff-timer {
    top: calc(83.24% - 104px);
    left: calc(52.5% - 77px);
    min-width: auto;
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    line-height: 1;
    text-align: left;
    white-space: nowrap;
  }

  .hotspot--login {
    display: block !important;
    top: 2.9833%;
    left: 13.8889%;
    width: 72.2222%;
    height: 0.8532%;
    border-radius: 3.7037vw;
    pointer-events: auto !important;
  }

  .hotspot--payment,
  .hotspot--contact {
    display: none !important;
  }

  .hotspot--payment-mobile {
    display: block !important;
    top: 83.75%;
    left: 17%;
    width: 66.1%;
    height: 0.99%;
    border-radius: 25px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    opacity: 1;
    pointer-events: auto !important;
  }

  .hotspot--payment-mobile::after {
    content: none;
  }

  .hotspot--contact {
    display: block !important;
    top: 91.84%;
    left: 28.98%;
    width: 42.59%;
    height: 0.53%;
    border-radius: 100px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    opacity: 1;
    pointer-events: auto !important;
  }

  .product-info {
    margin-top: 350px;
    padding: 44px 18px 42px;
  }

  .product-info h2 {
    font-size: 30px;
  }

  .product-info__lead {
    font-size: 16px;
  }

  .product-info__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .product-info__item {
    min-height: 0;
    padding: 18px;
  }

  .product-info__item h3 {
    font-size: 19px;
  }

  .product-info__item p,
  .product-info__note {
    font-size: 15px;
  }

  .payment-popup__dialog {
    max-height: min(86vh, 520px);
    overflow-y: auto;
    border-radius: 16px;
    padding: 20px 18px;
  }

  .payment-popup__title {
    font-size: 20px;
  }

  .payment-popup__text {
    font-size: 13px;
  }

}
