:root {
  --color-bg: #fafafa;
  --color-bg-soft: #efeeeb;
  --color-text: #222222;
  --color-primary: #0b3eb1;
  --color-primary-2: #102072;
  --color-primary-hover: #2c83f9;
  --color-gold: #ac7343;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-soft: 0 12px 28px rgba(16, 32, 114, 0.14);
  --shadow-strong: 0 20px 50px rgba(16, 32, 114, 0.28);
  --container-max: 1280px;
  --container-pad: 20px;
  --font-light: 300;
  --font-regular: 400;
  --font-ultra: 800;
  --hero-title-size: clamp(2.25rem, min(5.6vw, 8.4svh), 5.28rem);
  --hero-copy-size: clamp(1rem, min(1.5vw, 2.35svh), 1.2rem);
  --hero-intro-min-h: clamp(330px, 46svh, 540px);
  --hero-intro-pad-top: clamp(34px, 6.2svh, 64px);
  --hero-intro-pad-bottom: clamp(30px, 5.4svh, 58px);
  --hero-panel-min-h: clamp(340px, min(38vw, 54svh), 470px);
  --hero-panel-pad-bottom: clamp(52px, 7svh, 72px);
}

* {
  box-sizing: border-box;
}

html,
body {
  scrollbar-gutter: stable both-edges;
  margin: 0;
  padding: 0;
  background: #f4f6fc;
  overscroll-behavior-y: none;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--color-text);
  background: transparent;
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: normal;
  position: relative;
}

html.is-preloading,
html.is-preloading body {
  overflow: hidden;
}

/*.floating-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10001;
  width: 42px;
  height: 42px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 220ms ease;
  will-change: transform, opacity;
}
*/
.floating-cursor.is-visible {
  opacity: 1;
}

/*.floating-cursor__ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid rgba(44, 131, 249, 0.86);
  background: rgba(250, 250, 250, 0.2);
  box-shadow: 0 0 0 1px rgba(172, 115, 67, 0.12), 0 10px 22px rgba(16, 32, 114, 0.14);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}
*/
/*.floating-cursor__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  margin-top: -3.5px;
  border-radius: 999px;
  background: rgba(172, 115, 67, 0.95);
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}
*/
.floating-cursor.is-hover .floating-cursor__ring {
  transform: scale(1.35);
  border-color: rgba(44, 131, 249, 1);
  background: rgba(250, 250, 250, 0.28);
  box-shadow: 0 0 0 1px rgba(172, 115, 67, 0.24), 0 14px 28px rgba(16, 32, 114, 0.2);
}

.floating-cursor.is-hover .floating-cursor__dot {
  transform: scale(1.25);
  background: rgba(172, 115, 67, 1);
}

.floating-cursor.is-down .floating-cursor__ring {
  transform: scale(0.86);
}

.floating-cursor.is-down .floating-cursor__dot {
  transform: scale(0.8);
}

.page-preloader {
  --preloader-logo-w: clamp(180px, 24vw, 360px);
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fafafa 0%, #f4f6fc 60%, #efeeeb 100%);
  overflow: hidden;
}

.page-preloader::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--preloader-logo-w);
  aspect-ratio: 220 / 60;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(201, 131, 38, 0.94), rgba(255, 214, 139, 0.9) 52%, rgba(172, 115, 67, 0.95));
  box-shadow: 0 14px 28px rgba(172, 115, 67, 0.28);
  animation: preloader-plate-inout 2040ms ease-in-out 500ms both;
}

.page-preloader__logo {
  position: relative;
  z-index: 1;
  width: var(--preloader-logo-w);
  height: auto;
  opacity: 0;
  transform: translate3d(-46px, 0, 0) scale(0.94);
  animation: preloader-logo-inout 2040ms ease-in-out forwards;
  will-change: opacity, transform;
}

.page-preloader.is-hiding {
  animation: preloader-fade-out 680ms ease forwards;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, #fafafa 0%, #f4f6fc 60%, #efeeeb 100%);
  transform: translateZ(0);
}

body::after {
  content: none;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  overflow: clip;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
}

.container {
  width: min(var(--container-max), calc(100% - (var(--container-pad) * 2)));
  margin: 0 auto;
}

main {
  position: relative;
  isolation: isolate;
}

main > section {
  position: relative;
  z-index: 1;
}

main > section + section {
  margin-top: -1px;
}

.main-dark-band {
  --main-dark-band-top: 0px;
  --main-dark-band-height: 0px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
  height: var(--main-dark-band-height);
  transform: translate3d(0, var(--main-dark-band-top), 0);
  background: #1b1b1b;
  transition: transform 260ms ease, height 260ms ease;
}

.parallax-section {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.topbar {
  padding: 30px 0 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand--header {
  width: 220px;
  height: 60px;
}

.brand--header img {
  width: 220px;
  height: 60px;
}

.brand--footer img {
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 42px;
  object-fit: contain;
}

.hero-intro {
  min-height: var(--hero-intro-min-h);
  padding: var(--hero-intro-pad-top) 0 var(--hero-intro-pad-bottom);
  display: flex;
  align-items: center;
}

.hero-intro .container {
  position: relative;
}

.hero-title {
  margin: 0;
  max-width: min(920px, 100%);
  width: 100%;
  font-weight: var(--font-ultra);
  font-size: var(--hero-title-size);
  line-height: 0.92;
  letter-spacing: normal;
  color: var(--color-primary);
  position: relative;
  display: block;
  text-wrap: normal;
  white-space: normal;
  overflow-wrap: break-word;
  --hero-title-parallax-y: 0px;
  transform: translate3d(0, var(--hero-title-parallax-y), 0);
  will-change: transform;
  overflow: visible;
}

.hero-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0 0 -0.12em 0;
  display: block;
  pointer-events: none;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-wrap: inherit;
  white-space: inherit;
  overflow-wrap: inherit;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    110deg,
    rgba(201, 131, 38, 0) 42%,
    rgba(223, 165, 70, 0.82) 47%,
    rgba(255, 235, 173, 0.96) 50%,
    rgba(223, 165, 70, 0.82) 53%,
    rgba(201, 131, 38, 0) 58%
  );
  background-size: 340% 100%;
  background-position: 140% 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
}

.hero-title.is-shimmering {
}

.hero-title.is-shimmering::after {
  opacity: 1;
  animation: hero-gold-shimmer 4000ms linear -250ms 1 both;
}

.hero-copy {
  max-width: 760px;
  margin: clamp(18px, 3svh, 34px) 0 0;
  font-size: var(--hero-copy-size);
  text-wrap: pretty;
  --hero-copy-parallax-y: 0px;
  transform: translate3d(0, var(--hero-copy-parallax-y), 0);
  will-change: transform;
}

.cta-row {
  margin-top: clamp(18px, 3svh, 26px);
  display: flex;
}

.hero-intro .cta-row {
  --hero-cta-parallax-y: 0px;
  transform: translate3d(0, var(--hero-cta-parallax-y), 0);
  will-change: transform;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  font-weight: var(--font-ultra);
  letter-spacing: normal;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
  box-shadow: 0 12px 24px rgba(11, 62, 177, 0.28);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--color-primary-hover);
  box-shadow: 0 16px 28px rgba(11, 62, 177, 0.32);
}

.btn.inverse {
  background: #fff;
  color: var(--color-primary);
}

.hero-panel-content .btn.inverse {
  background: linear-gradient(145deg, rgba(201, 131, 38, 0.96), rgba(255, 214, 139, 0.94) 52%, rgba(172, 115, 67, 0.97));
  color: #102072;
  box-shadow: none;
}

.hero-panel-content .btn.inverse:hover {
  background: linear-gradient(145deg, rgba(214, 145, 52, 0.98), rgba(255, 224, 161, 0.95) 52%, rgba(182, 126, 80, 0.98));
  color: #0b3eb1;
  box-shadow: none;
}

.hero-panel {
  --hero-panel-parallax-y: 0px;
  --hero-panel-parallax-x: 0px;
  position: relative;
  z-index: 2;
  transform: translate3d(var(--hero-panel-parallax-x), var(--hero-panel-parallax-y), 0);
  will-change: transform;
  padding: 0 0 var(--hero-panel-pad-bottom);
}

.hero-panel-card {
  position: relative;
  display: flex;
  border-radius: var(--radius-lg);
  overflow: clip;
  min-height: var(--hero-panel-min-h);
  box-shadow: var(--shadow-strong);
}

.hero-panel-bg {
  position: absolute;
  inset: 0;
}

.hero-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(11, 62, 177, 0.81), rgba(16, 32, 114, 0.72));
}

.hero-panel-content {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  max-width: 1140px;
  padding: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(0px, 0.25vw, 3px);
  color: #fafafa;
  text-wrap: pretty;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-panel-content .cta-row {
  margin-top: 0;
  margin-bottom: clamp(14px, 1.8vw, 24px);
}

.hero-panel-content .section-title {
  margin-top: 0;
  margin-bottom: 0;
}

.hero-panel-content > p {
  font-size: 1.1em;
}

.hero-panel-list {
  margin: 0;
  padding-left: 1.2em;
  font-size: 1.1em;
  line-height: 1.55;
}

.hero-panel-list li {
  margin-bottom: 4px;
}

.hero-panel-list li:last-child {
  margin-bottom: 0;
}

.hero-panel-content .title-normal-uppercase {
  font-size: clamp(1.2rem, 2.2vw, 2rem) !important;
  line-height: 1.02;
}

.hero-panel-content .title-faststart-hero {
  font-size: calc((2em / 1.5) * 1.5) !important;
}

.text-medium {
  font-weight: var(--font-regular);
}

.hero-panel-bottom {
  margin-top: auto;
  padding-top: clamp(14px, 2.6vw, 28px);
  display: flex;
  flex-direction: column;
}

.hero-panel-bottom .cta-row {
  margin-bottom: clamp(22px, 2.6vw, 38px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: normal;
  font-size: 0.78rem;
  opacity: 0.9;
  margin-bottom: 10px;
  font-weight: var(--font-light);
}

.section {
  padding: 72px 0;
}

.section-title {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: normal;
  font-weight: var(--font-ultra);
}

.title-faststart {
  font-size: 2em !important;
  line-height: 1.12;
}

.title-faststart-hero {
  font-size: calc(2em / 1.5) !important;
}

.title-domain-smaller {
  font-size: 0.75em !important;
}

.title-domain-xxl {
  font-size: calc(0.75em * 3 * 0.8) !important;
  line-height: 1.02;
}

.title-normal-uppercase {
  font-weight: var(--font-regular) !important;
  text-transform: uppercase;
  font-size: calc(0.75em * 3 * 0.8) !important;
}

.faq-heading {
  font-weight: var(--font-regular) !important;
  font-size: 1.5em !important;
}

.section-copy {
  margin-top: 16px;
  max-width: 780px;
  text-wrap: pretty;
}

.section-head.center {
  text-align: center;
}

.features-head-logo {
  display: block;
  width: clamp(540px, 54vw, 780px);
  max-width: 100%;
  height: auto;
  margin: 0 auto clamp(28px, 4vw, 52px);
}

.features-section {
  padding-top: 36px;
}

.features-head .title-faststart {
  --features-eyebrow-parallax-y: 0px;
  transform: translate3d(0, var(--features-eyebrow-parallax-y), 0);
  will-change: transform;
  color: #ffffff;
}

.features-head .title-domain-xxl {
  /* отступ в одну строку заголовка; em — запасной вариант для браузеров без lh */
  margin-top: 1.06em;
  margin-top: 1lh;
  --features-title-parallax-y: 0px;
  transform: translate3d(0, var(--features-title-parallax-y), 0);
  will-change: transform;
  color: #ffffff;
}

.features-grid {
  margin-top: 36px;
  /* при параллаксе карточки поднимаются до 47px, заголовок опускается до 13px;
     запас разводит их, чтобы не было наезда (см. медиазапрос min-width: 901px) */
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4.2vw, 56px);
}

.feature-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 0;
  overflow: visible;
  min-height: 250px;
  color: var(--color-text);
  --card-parallax-y: 0px;
  --card-hover-scale: 1;
  --card-hover-lift: 0px;
  transform: translate3d(0, var(--card-parallax-y), 0);
  will-change: transform;
}

.feature-card[data-reveal] {
  transform: translate3d(0, var(--card-parallax-y), 0);
}

.feature-card[data-reveal].is-visible {
  transform: translate3d(0, var(--card-parallax-y), 0);
}

.feature-card__inner {
  position: relative;
  min-height: 100%;
  border-radius: var(--radius-md);
  border: 0;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
  padding: 24px;
  color: var(--color-text);
  transform: translate3d(0, var(--card-hover-lift), 0) scale(var(--card-hover-scale));
  transform-origin: 50% 50%;
  will-change: transform;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 860ms ease, background-color 860ms ease;
}

.feature-card__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180%;
  height: 180%;
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0.08);
  transform-origin: center;
  opacity: 0;
  background: radial-gradient(circle, rgba(44, 131, 249, 0.22) 0%, rgba(44, 131, 249, 0.08) 42%, rgba(44, 131, 249, 0) 74%);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 860ms ease;
  z-index: 0;
}

.feature-card:hover {
  --card-hover-scale: 1.1;
  --card-hover-lift: -6px;
  color: var(--color-text);
}

.feature-card:hover .feature-card__inner {
  box-shadow: 0 24px 42px rgba(16, 32, 114, 0.28);
}

.feature-card:hover .feature-card__inner::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.feature-card__inner > * {
  position: relative;
  z-index: 1;
}

.feature-card .icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  transform: scale(1);
  transform-origin: 50% 50%;
  will-change: transform;
  transition: transform 260ms ease, filter 260ms ease;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  line-height: 1.3;
  font-weight: var(--font-regular);
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 260ms ease;
}

.feature-card p {
  transition: color 260ms ease;
}

.faq-wrap {
  background: linear-gradient(180deg, #1b1b1b 0%, #1b1b1b 50%, #1c1f2a 50%, #1c1f2a 100%);
  border-top: 0;
  border-bottom: 0;
  margin-bottom: 0;
  padding-top: 24px;
}

.faq-wrap .container {
  background: #ffffff;
  border: 1px solid rgba(11, 62, 177, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px rgba(16, 32, 114, 0.2);
  padding: clamp(30px, 4.2vw, 56px);
  min-height: clamp(430px, 44vw, 620px);
  overflow: hidden;
}

/* Запас снизу под параллакс: колонка сдвигается до 36px, пункт аккордеона
   до 24px, суммарно 60px. Без него открытый нижний вопрос обрезается
   по overflow: hidden. Ниже 900px параллакс отключён, запас не нужен. */
@media (min-width: 901px) {
  .features-grid {
    margin-top: 72px;
  }

  .faq-wrap .container {
    padding-bottom: calc(clamp(30px, 4.2vw, 56px) + 64px);
  }
}

.faq-contact {
  display: grid;
  gap: 22px;
  margin-top: clamp(34px, 5vw, 72px);
  color: var(--color-ink);
}

.faq-contact__item {
  display: grid;
  gap: 6px;
}

.faq-contact__title {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 1.2;
  font-weight: var(--font-ultra);
}

.faq-contact a {
  width: fit-content;
  color: var(--color-ink);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.35;
  font-weight: var(--font-regular);
  text-decoration: none;
}

.faq-contact a:hover {
  color: var(--color-primary);
}

.ticker-band {
  height: auto;
  min-height: 120px;
  max-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
    /* Добавляем вертикальные отступы, чтобы визуально компенсировать обрезку */
  padding: 20px 0;
}

.ticker-band--hero {
  --hero-band-parallax-y: 0px;
  --hero-band-parallax-x: 0px;
  position: relative;
  z-index: 2;
  transform: translate3d(var(--hero-band-parallax-x), var(--hero-band-parallax-y), 0);
  will-change: transform;
}

.ticker-band__viewport {
  width: 100%;
  overflow: hidden;
}

.ticker-band__svg {
  display: none;
}

.ticker-band__track {
  display: inline-flex;
  align-items: center;
  min-width: 200%;
  white-space: nowrap;
  animation: ticker-scroll 18000ms linear infinite;
}

.ticker-band__item {
  position: relative;
  display: inline-block;
  margin-right: clamp(28px, 2.4vw, 56px);
  font-family: "Poland Can Into", sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: clamp(2.28rem, 6.24vw, 6.72rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-primary);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  /* Добавляем небольшой запас сверху для выносных элементов */
  /*padding-top: 0.1em;*/
}

.ticker-band__item::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: rgba(223, 165, 70, 0.95);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  -webkit-mask-image: linear-gradient(
    110deg,
    rgba(0, 0, 0, 0) 42%,
    rgba(0, 0, 0, 0.95) 49%,
    rgba(0, 0, 0, 0) 56%
  );
  -webkit-mask-size: 280% 100%;
  -webkit-mask-position: 120% 0;
  -webkit-mask-repeat: no-repeat;
  animation: ticker-stroke-shimmer 4000ms linear infinite;
  pointer-events: none;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
}

.faq-wrap .info-grid > article,
.faq-wrap .info-grid > aside {
  --faq-column-parallax-y: 0px;
  transform: translate3d(0, var(--faq-column-parallax-y), 0);
  will-change: transform;
}

.faq-list {
  display: grid;
  gap: 10px;
  padding-top: 16px;
}

.faq-item {
  border: 0;
  border-radius: 12px;
  background: #f3f6ff;
  --accordion-parallax-y: 0px;
  transform: translate3d(0, var(--accordion-parallax-y), 0);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.faq-item:hover {
  transform: translate3d(0, calc(var(--accordion-parallax-y) - 4px), 0);
  box-shadow: 0 14px 28px rgba(16, 32, 114, 0.16);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: var(--font-regular);
  padding: 16px 18px;
  line-height: 1.35;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
}

.site-footer {
  background: linear-gradient(180deg, #1c1f2a 0%, #102072 100%);
  color: #fafafa;
  padding: 48px 0 24px;
  margin-top: -1px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.footer-brand-wrap {
  max-width: 640px;
}

.footer-company-info {
  margin-top: 18px;
  max-width: 640px;
  color: rgba(250, 250, 250, 0.8);
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: var(--font-light);
}

.footer-company-info p {
  margin: 0 0 8px;
}

.footer-company-info p:last-child {
  margin-bottom: 0;
}

.footer-company-info a {
  color: inherit;
  text-decoration: none;
}

.footer-company-info a:hover {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-divider {
  margin-top: 26px;
  height: 1px;
  background: rgba(250, 250, 250, 0.25);
}

.copyright {
  margin-top: 16px;
  text-align: center;
  color: rgba(250, 250, 250, 0.78);
  font-size: 0.94rem;
  font-weight: var(--font-light);
}

.policy {
  padding: 20px 0 64px;
}

.modules-section {
  font-family: "Montserrat", sans-serif;
  background: #1b1b1b;
  overflow: hidden;
  padding-top: clamp(35px, 3.5vw, 54px);
  padding-bottom: clamp(22px, 2.4vw, 35px);
}

.modules-title {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.45rem, 7vw, 2rem) !important;
  font-weight: var(--font-light) !important;
  line-height: 1.12;
  text-transform: uppercase;
  --modules-title-parallax-y: 0px;
  transform: translate3d(0, var(--modules-title-parallax-y), 0);
  will-change: transform;
}

.modules-panel {
  margin-top: clamp(22px, 3vw, 43px);
  padding: clamp(22px, 3.6vw, 42px);
  border: 1px solid rgba(11, 62, 177, 0.14);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 32, 114, 0.2);
}

.modules-group__title {
  --modules-group-title-parallax-y: 0px;
  transform: translate3d(0, var(--modules-group-title-parallax-y), 0);
  will-change: transform;
  margin: 0 0 clamp(32px, 3.6vw, 48px);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(11, 62, 177, 0.14);
  color: var(--color-primary);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: var(--font-regular);
  line-height: 1.2;
  text-transform: uppercase;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 72px;
  column-gap: clamp(16px, 1.8vw, 24px);
  row-gap: clamp(3px, 0.36vw, 5px);
  margin-top: 0;
}

.module-card {
  --module-card-parallax-y: 0px;
  --module-card-hover-y: 0px;
  min-height: 72px;
  height: 100%;
  padding: clamp(10px, 1.15vw, 14px);
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  transform: translate3d(0, calc(var(--module-card-parallax-y) + var(--module-card-hover-y)), 0);
  will-change: transform;
  transition: transform 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}

.module-card[data-reveal] {
  transform: translate3d(0, calc(var(--module-card-parallax-y) + var(--module-card-hover-y)), 0);
  transition: transform 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}

.module-card:hover {
  --module-card-hover-y: -8px;
  background: #f3f6ff;
  box-shadow: none;
}

.module-card--compact {
  min-height: 72px;
}

.module-card__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--color-primary);
  background: #eef2ff;
  box-shadow: none;
  overflow: hidden;
}

.module-card__icon svg {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  max-width: 32px;
  max-height: 32px;
  display: block;
  flex: 0 0 32px;
}

.module-card__icon svg,
.module-card__icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.module-card h3 {
  margin: 0;
  max-width: none;
  width: 100%;
  color: #111827;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.25;
  font-weight: var(--font-light);
}

.module-card--compact h3 {
  margin: 0;
}

.module-card--bonus {
  grid-column: auto;
  justify-self: stretch;
  width: 100%;
  background: transparent;
}

.module-card--bonus .module-card__icon {
  color: var(--color-gold);
  background: rgba(255, 235, 173, 0.34);
}

.module-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.module-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 9px;
  border: 0;
  border-radius: 999px;
  color: var(--color-gold);
  background: rgba(255, 235, 173, 0.24);
  font-size: 0.74rem;
  font-weight: var(--font-regular);
  white-space: nowrap;
}

.modules-note {
  margin: clamp(22px, 3vw, 36px) 0 0;
  color: rgba(16, 32, 114, 0.78);
  text-align: center;
  font-size: 0.94rem;
}

.policy-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 62, 177, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 4vw, 36px);
}

.policy-title {
  color: var(--color-primary);
  margin: 0;
  line-height: 1;
  font-weight: var(--font-ultra);
}

.policy-subtitle {
  margin-top: 14px;
  font-weight: var(--font-ultra);
}

.policy-body p {
  margin: 0 0 10px;
  font-size: 0.96rem;
  overflow-wrap: anywhere;
  font-weight: var(--font-regular);
}

.registration-page {
  background: #f4f6fc;
}

.registration-page .page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.registration-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(36px, 6vw, 82px) 0 clamp(52px, 7vw, 96px);
  background: #f4f6fc;
}

.registration-container {
  display: flex;
  justify-content: center;
}

.registration-form-card {
  width: min(100%, 440px);
}

.registration-tariff-fixed {
  pointer-events: none;
  opacity: 1;
}

strong,
b {
  font-weight: var(--font-ultra);
}

.text-note,
small {
  font-weight: var(--font-light);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-gold-shimmer {
  0% {
    background-position: 140% 0;
  }
  100% {
    background-position: -140% 0;
  }
}

@keyframes preloader-logo-inout {
  0% {
    opacity: 0;
    transform: translate3d(-46px, 0, 0) scale(0.94);
  }
  24% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  70% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(52px, 0, 0) scale(1.02);
  }
}

@keyframes preloader-plate-inout {
  0% {
    opacity: 0;
    transform: translate3d(calc(-50% - 54px), -50%, 0) scale(0.9);
  }
  24% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  70% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(-50% + 60px), -50%, 0) scale(1.03);
  }
}

@keyframes preloader-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes ticker-stroke-shimmer {
  0% {
    -webkit-mask-position: 120% 0;
  }
  100% {
    -webkit-mask-position: -120% 0;
  }
}

@keyframes ticker-scroll-svg {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes ticker-svg-shimmer {
  0% {
    transform: translate3d(-2400px, 0, 0);
  }
  100% {
    transform: translate3d(7600px, 0, 0);
  }
}

@media (max-width: 1024px) {
  :root {
    --container-max: 1040px;
  }

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

  .module-card--bonus {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .hero-panel-content {
    padding-bottom: clamp(14px, 2.4vw, 24px);
  }

  .hero-panel-bottom {
    padding-bottom: clamp(10px, 1.6vw, 18px);
  }

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

@media (min-width: 768px) and (max-width: 1366px) {
  :root {
    --container-pad: 36px;
    --hero-intro-min-h: clamp(260px, 27svh, 340px);
    --hero-intro-pad-top: clamp(24px, 3.8svh, 42px);
    --hero-intro-pad-bottom: clamp(8px, 1.4svh, 17px);
  }

  .ticker-band__item {
    font-size: calc(clamp(2.28rem, 6.24vw, 6.72rem) * 1.5);
  }

  .faq-wrap .container {
    min-height: clamp(452px, 46.2vw, 651px);
    padding-bottom: clamp(34px, 4.8vw, 60px);
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  :root {
    --hero-title-size: clamp(2.5rem, min(5.1vw, 7.8svh), 4.8rem);
    --hero-copy-size: clamp(1.08rem, min(1.7vw, 2.35svh), 1.34rem);
    --hero-intro-min-h: clamp(270px, 26svh, 340px);
    --hero-intro-pad-top: clamp(24px, 3.6svh, 40px);
    --hero-intro-pad-bottom: clamp(8px, 1.3svh, 16px);
    --hero-panel-min-h: clamp(330px, min(40vw, 52svh), 450px);
    --hero-panel-pad-bottom: clamp(46px, 6svh, 64px);
  }

}

@media (min-width: 1280px) {
  .faq-wrap .container {
    min-height: clamp(380px, 32vw, 520px);
    padding-bottom: clamp(22px, 2.2vw, 34px);
  }
}

@media (max-width: 767px) {
  :root {
    --container-pad: 28px;
    --hero-title-size: clamp(2rem, min(9vw, 6.4svh), 3.1rem);
    --hero-copy-size: clamp(0.98rem, min(4.1vw, 2.6svh), 1.1rem);
    --hero-intro-min-h: clamp(330px, 54svh, 500px);
    --hero-intro-pad-top: clamp(23px, 4.4svh, 37px);
    --hero-intro-pad-bottom: clamp(28px, 5.4svh, 44px);
    --hero-panel-min-h: clamp(390px, min(92vw, 66svh), 560px);
    --hero-panel-pad-bottom: clamp(38px, 6svh, 48px);
  }

  .topbar {
    padding: 20px 0 14px;
  }

  .brand--header,
  .brand--header img {
    width: 180px;
    height: 49px;
  }

  .hero-title {
    line-height: 0.98;
    letter-spacing: normal;
  }

  .section-title {
    font-size: clamp(1.45rem, 6.2vw, 2.05rem);
    line-height: 1.12;
  }

  .title-faststart {
    font-size: clamp(1.25rem, 5.4vw, 1.75rem) !important;
    line-height: 1.14;
  }

  .title-faststart-hero {
    font-size: clamp(1rem, 4.4vw, 1.32rem) !important;
  }

  .hero-panel-content .title-faststart-hero {
    font-size: clamp(1rem, 4.4vw, 1.32rem) !important;
    line-height: 1.14;
  }

  .title-domain-smaller {
    font-size: clamp(1.1rem, 4.9vw, 1.52rem) !important;
  }

  .title-domain-xxl,
  .title-normal-uppercase {
    font-size: clamp(1.5rem, 6.7vw, 2.12rem) !important;
    line-height: 1.06;
  }

  .features-head-logo {
    width: clamp(280px, 74vw, 460px);
    margin-bottom: clamp(18px, 5vw, 30px);
  }

  .modules-title {
    font-size: clamp(1.18rem, 5.4vw, 1.55rem) !important;
  }

  .module-card h3 {
    font-size: clamp(0.9rem, 3.6vw, 1.02rem);
    line-height: 1.22;
  }

  .faq-heading {
    font-size: clamp(1.06rem, 4.6vw, 1.35rem) !important;
  }

  .section-copy,
  .hero-panel-content > p,
  .hero-panel-list {
    font-size: clamp(0.92rem, 3.7vw, 1rem);
    line-height: 1.55;
  }

  .hero-panel-content {
    padding-bottom: clamp(14px, 3.2vw, 24px);
  }

  .hero-panel-bottom {
    padding-top: clamp(12px, 5vw, 22px);
  }

  .ticker-band {
    height: clamp(124px, 32vw, 176px);
    min-height: 124px;
    max-height: 176px;
  }

  .ticker-band__track {
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }

  .ticker-band__viewport {
    display: block;
  }

  .ticker-band__svg {
    display: none !important;
  }

  .ticker-band__item {
    font-size: calc(clamp(2.28rem, 6.24vw, 6.72rem) * 1.28);
    -webkit-text-stroke: 0;
    text-stroke: 0;
    color: var(--color-primary);
    text-shadow: none;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    backface-visibility: visible;
    transform: none;
  }

  .ticker-band__item::after {
    -webkit-text-stroke: 0;
    text-stroke: 0;
    color: rgba(228, 176, 86, 0.98);
    text-shadow: none;
    -webkit-mask-image: linear-gradient(
      110deg,
      rgba(0, 0, 0, 0) 42%,
      rgba(0, 0, 0, 0.95) 49%,
      rgba(0, 0, 0, 0) 56%
    );
    -webkit-mask-size: 280% 100%;
    -webkit-mask-position: 120% 0;
    -webkit-mask-repeat: no-repeat;
    animation: ticker-stroke-shimmer 5200ms linear infinite;
  }

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

  .modules-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .module-card--bonus {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .module-card,
  .module-card--compact {
    min-height: 72px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
  }

  .module-card h3 {
    margin: 0;
  }

  .modules-grid .module-card:nth-child(1) { order: 1; }
  .modules-grid .module-card:nth-child(3) { order: 2; }
  .modules-grid .module-card:nth-child(5) { order: 3; }
  .modules-grid .module-card:nth-child(7) { order: 4; }
  .modules-grid .module-card:nth-child(9) { order: 5; }
  .modules-grid .module-card:nth-child(11) { order: 6; }
  .modules-grid .module-card:nth-child(13) { order: 7; }
  .modules-grid .module-card:nth-child(2) { order: 8; }
  .modules-grid .module-card:nth-child(4) { order: 9; }
  .modules-grid .module-card:nth-child(6) { order: 10; }
  .modules-grid .module-card:nth-child(8) { order: 11; }
  .modules-grid .module-card:nth-child(10) { order: 12; }
  .modules-grid .module-card:nth-child(12) { order: 13; }

  .footer-row {
    flex-direction: column;
  }

  .faq-wrap .container {
    padding: clamp(22px, 6vw, 34px);
    min-height: clamp(400px, 108vw, 560px);
  }

  .policy {
    padding-top: 10px;
  }

  .policy-subtitle {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .policy-body p {
    font-size: 0.93rem;
  }

  body::after {
    filter: blur(16px) saturate(1.06);
  }
}

@media (max-width: 430px) {
  :root {
    --container-pad: 20px;
    --hero-title-size: clamp(1.82rem, min(9.4vw, 5.8svh), 2.55rem);
    --hero-copy-size: clamp(0.94rem, min(4vw, 2.45svh), 1rem);
    --hero-intro-min-h: clamp(310px, 52svh, 430px);
    --hero-intro-pad-top: clamp(19px, 3.9svh, 28px);
    --hero-intro-pad-bottom: clamp(24px, 4.8svh, 34px);
    --hero-panel-min-h: clamp(360px, min(105vw, 62svh), 500px);
    --hero-panel-pad-bottom: clamp(32px, 5.4svh, 42px);
  }

  .hero-copy {
    margin-top: clamp(14px, 2.7svh, 18px);
  }

  .section-title {
    font-size: clamp(1.3rem, 6vw, 1.68rem);
  }

  .title-faststart {
    font-size: clamp(1.12rem, 5.2vw, 1.42rem) !important;
  }

  .hero-panel-content .title-faststart-hero {
    font-size: clamp(0.94rem, 4.4vw, 1.12rem) !important;
  }

  .title-domain-smaller {
    font-size: clamp(1rem, 4.8vw, 1.28rem) !important;
  }

  .title-domain-xxl,
  .title-normal-uppercase {
    font-size: clamp(1.3rem, 6.4vw, 1.7rem) !important;
  }

  .modules-title {
    font-size: clamp(1.05rem, 5.2vw, 1.28rem) !important;
  }

  .feature-card h3 {
    font-size: clamp(1rem, 4.8vw, 1.18rem);
  }

  .btn {
    width: 100%;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding: 56px 0;
  }

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

  .feature-card__inner {
    padding: 18px;
  }

  .feature-card .icon {
    width: 48px;
    height: 48px;
  }

  .module-card {
    padding: 10px;
  }

  .module-card__icon {
    width: 50px;
    height: 50px;
  }

  .module-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .faq-item summary,
  .faq-item p {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 360px) {
  :root {
    --container-pad: 16px;
    --hero-title-size: clamp(1.68rem, min(8.4vw, 5.3svh), 2.16rem);
    --hero-copy-size: clamp(0.9rem, min(3.8vw, 2.3svh), 0.94rem);
    --hero-panel-min-h: clamp(340px, min(108vw, 60svh), 460px);
  }

  .brand--header,
  .brand--header img {
    width: 156px;
    height: 43px;
  }

  .btn {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 0.94rem;
  }

  .section-title {
    font-size: clamp(1.18rem, 5.8vw, 1.44rem);
  }

  .title-faststart {
    font-size: clamp(1rem, 5vw, 1.24rem) !important;
  }

  .hero-panel-content .title-faststart-hero {
    font-size: clamp(0.88rem, 4.2vw, 1rem) !important;
  }

  .title-domain-xxl,
  .title-normal-uppercase {
    font-size: clamp(1.18rem, 6.1vw, 1.46rem) !important;
  }

  .modules-title {
    font-size: clamp(0.98rem, 5.1vw, 1.16rem) !important;
  }
}

@media (min-width: 1680px) {
  :root {
    --container-max: 1440px;
    --hero-title-size: clamp(4.2rem, min(4.9vw, 8svh), 5.9rem);
    --hero-copy-size: clamp(1.16rem, min(1.2vw, 2.1svh), 1.32rem);
    --hero-intro-min-h: clamp(420px, 44svh, 610px);
    --hero-intro-pad-top: clamp(30px, 4.4svh, 58px);
    --hero-intro-pad-bottom: clamp(44px, 5.8svh, 76px);
    --hero-panel-min-h: clamp(430px, min(33vw, 54svh), 520px);
    --hero-panel-pad-bottom: clamp(62px, 7svh, 86px);
  }

}

@media (min-width: 2560px) {
  :root {
    --container-max: 1560px;
    --hero-title-size: clamp(4.8rem, min(4.15vw, 7.2svh), 6.45rem);
    --hero-copy-size: clamp(1.22rem, min(1vw, 1.9svh), 1.42rem);
    --hero-intro-min-h: clamp(480px, 42svh, 680px);
    --hero-panel-min-h: clamp(470px, min(28vw, 52svh), 560px);
  }

  .section-title {
    font-size: clamp(2.1rem, 2.5vw, 3.25rem);
  }
}

@media (max-height: 700px) and (max-width: 900px) {
  :root {
    --hero-title-size: clamp(1.78rem, min(7.2vw, 7svh), 2.45rem);
    --hero-copy-size: clamp(0.9rem, min(3.2vw, 3svh), 1rem);
    --hero-intro-min-h: clamp(260px, 58svh, 360px);
    --hero-intro-pad-top: clamp(20px, 4.6svh, 32px);
    --hero-intro-pad-bottom: clamp(18px, 4svh, 28px);
    --hero-panel-min-h: clamp(300px, 74svh, 420px);
    --hero-panel-pad-bottom: clamp(28px, 5svh, 34px);
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

  .page-preloader__logo {
    opacity: 1;
    transform: none;
  }

  body::after {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .floating-cursor {
    display: none !important;
  }

  .faq-item,
  .faq-item summary {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    outline: none;
  }
}

@supports (-webkit-touch-callout: none) {
  .ticker-band__item {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.2px var(--color-primary);
    text-stroke: 1.2px var(--color-primary);
  }

  .ticker-band__item::after {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.2px rgba(223, 165, 70, 0.95);
    text-stroke: 1.2px rgba(223, 165, 70, 0.95);
  }
}
