/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #030713;
  color: #ffffff;
  min-height: 100%;
  overflow-x: hidden;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  height: 80px;
  border-bottom: none;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(180deg, #030713 0%, rgba(3, 7, 19, 0.85) 40%, rgba(3, 7, 19, 0.4) 70%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

.navbar__logo {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transform: scaleY(1.15);
  transform-origin: center;
}

.navbar__logo-x {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 12px rgba(232, 25, 44, 0.8)) drop-shadow(0 0 6px rgba(232, 25, 44, 0.6));
  margin-top: 1px;
}

.navbar__logo-x svg {
  display: block;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.navbar__link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  white-space: nowrap;
}

.navbar__link:hover {
  color: #ffffff;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  background: linear-gradient(180deg, #ed2f3e 0%, #b01722 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.03em;
  border-radius: 6px;
  transition: box-shadow 0.2s, filter 0.2s;
  white-space: nowrap;
  box-shadow: 0 3px 16px rgba(232, 25, 44, 0.4);
}

.navbar__cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 4px 20px rgba(232, 25, 44, 0.6);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.navbar__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Burger to Cross animation */
.mobile-menu--active~.navbar .navbar__burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu--active~.navbar .navbar__burger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu--active~.navbar .navbar__burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.3s;
}

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

.mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 7, 19, 0.9);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu--active .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #050b17;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu--active .mobile-menu__content {
  right: 0;
}

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  margin-bottom: 40px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__link {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s, transform 0.3s, opacity 0.3s;
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu--active .mobile-menu__link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu--active .mobile-menu__link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu--active .mobile-menu__link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu--active .mobile-menu__link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu--active .mobile-menu__link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu__link:hover {
  color: #e8192c;
}

.mobile-menu__cta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(180deg, #ed2f3e 0%, #b01722 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(232, 25, 44, 0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s 0.3s, transform 0.3s 0.3s;
}

.mobile-menu--active .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO WRAPPER — bordered block
   ============================================================ */
.hero-wrapper {
  margin: 12px 56px;
  margin-top: calc(80px + 12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: #030713;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: calc(100vh - 80px - 24px);
  max-height: calc(100vh - 80px - 24px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: transparent;
}

/* Broad subtle red glow covering the whole hero background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center,
      rgba(180, 10, 20, 0.15) 0%,
      rgba(120, 5, 12, 0.08) 40%,
      transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle ambient glow bottom-left — removed */
.hero::after {
  display: none;
}

/* ---- Left content ---- */
.hero__content {
  position: relative;
  z-index: 2;
  flex: 0 0 50%;
  width: 50%;
  padding: 48px 0 160px 80px;
  /* bottom padding leaves room for absolute bonuses */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 6px 12px;
  width: fit-content;
  transform: scaleX(1.05) scaleY(1.1);
  transform-origin: left center;
  margin-bottom: 4px;
}

.hero__badge-icon {
  flex-shrink: 0;
}

/* Main heading */
.hero__title {
  font-family: 'Golos Text', 'Inter', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transform: scaleX(1.28) scaleY(0.85);
  transform-origin: left center;
  display: inline-block;
  margin-top: -28px;
}

.hero__title-white {
  color: #ffffff;
}

.hero__title-red {
  color: #e8192c;
  text-shadow:
    0 0 4px rgba(232, 25, 44, 0.5),
    0 0 8px rgba(232, 25, 44, 0.3);
}

/* Description */
.hero__desc {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 200;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  transform: scaleX(1.06);
  transform-origin: left center;
  margin-top: -12px;
  margin-left: 4px;
}

.hero__desc u,
.hero__desc b,
.hero__desc strong {
  font-weight: 600;
}

.hero__desc u {
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

/* CTA Button */
.hero__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: linear-gradient(180deg, #ed2f3e 0%, #b01722 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 10px;
  width: 100%;
  max-width: 340px;
  margin-top: 16px;
  transition: box-shadow 0.2s, transform 0.15s, filter 0.2s;
  box-shadow: 0 4px 24px rgba(232, 25, 44, 0.45);
}

.hero__btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 32px rgba(232, 25, 44, 0.65);
  transform: translateY(-1px);
}

.hero__btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__btn-arrow svg {
  display: block;
}

/* ---- Right image area ---- */
.hero__image-wrap {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
}

.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
}

/* Fade — привязан к левому краю видео через JS-переменную */
.hero__image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--video-left, 0px);
  width: 480px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to right,
      #030713 0%,
      rgba(3, 7, 19, 0.85) 40%,
      rgba(3, 7, 19, 0.4) 70%,
      transparent 100%);
}



.hero__float {
  position: absolute;
  z-index: 5;
  background: rgba(20, 20, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero__float--potim {
  top: 28%;
  left: 8%;
  animation: floatY 4s ease-in-out infinite;
}

.hero__float--zavtra {
  bottom: 28%;
  right: 4%;
  animation: floatY 4s ease-in-out infinite 2s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ============================================================
   BONUS CARDS — absolute bottom, overlapping photo
   ============================================================ */
.bonuses {
  position: absolute;
  bottom: 60px;
  left: 80px;
  right: 24px;
  z-index: 10;
}

.bonuses__grid {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: auto;
}

.bonuses__grid>.hero-reveal {
  flex-shrink: 0;
  width: 320px;
  display: flex;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 14px 16px 94px;
  border-radius: 14px;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  /* Liquid glass — более плотный эффект пленки с синим оттенком */
  background: rgba(40, 60, 100, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.2s, border-color 0.2s;
  isolation: isolate;
}

.bonus-card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 14px;
  padding: 1.5px;
  background:
    linear-gradient(90deg, transparent 0%, transparent 20%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.1) 45%, transparent 60%, transparent 100%) top / 100% 1.5px no-repeat,
    linear-gradient(90deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0.1) 65%, transparent 80%, transparent 100%) bottom / 100% 1.5px no-repeat,
    linear-gradient(0deg, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.1) 55%, transparent 70%, transparent 100%) left / 1.5px 100% no-repeat,
    linear-gradient(0deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0.1) 65%, transparent 80%, transparent 100%) right / 1.5px 100% no-repeat,
    rgba(255, 255, 255, 0.08);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  box-shadow:
    inset -80px 40px 100px -60px rgba(255, 255, 255, 0.015);
}

.bonus-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.bonus-card__icon {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-card__body {
  display: flex;
  flex-direction: column;
}

.bonus-card__title {
  font-size: 17.5px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.bonus-card__desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-top: 4px;
}

.bonus-card__icon svg {
  filter: drop-shadow(0 0 6px rgba(232, 25, 44, 0.8));
}

.bonus-card__icon--chat svg,
.bonus-card__icon--group svg {
  width: 28px;
  height: 28px;
}

.bonus-card__icon--rozbir svg {
  width: 36px;
  height: 36px;
}

.bonus-card__icon--play svg {
  width: 36px;
  height: 36px;
}

.bonus-card__icon--chat,
.bonus-card__icon--play,
.bonus-card__icon--group,
.bonus-card__icon--rozbir {
  background: #050b17;
  color: #e8192c;
  border: 1.5px solid rgba(232, 25, 44, 0.6);
  box-shadow:
    0 0 12px rgba(232, 25, 44, 0.35),
    inset 0 0 8px rgba(232, 25, 44, 0.1);
}



/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-section {
  padding: 40px 80px 60px;
  background: #030713;
  overflow: visible;
}

.how-section__header {
  margin-bottom: 40px;
}

.how-section__label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #c2222e;
  text-transform: uppercase;
  margin-bottom: 12px;
  transform: scaleX(1.25);
  transform-origin: left center;
}

.how-section__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  transform: scaleX(1.08) scaleY(0.88);
  transform-origin: left center;
}

.how-section__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  overflow: visible;
}

.how-step {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  background-clip: padding-box;
  transition: background 0.2s;
  overflow: visible;
  isolation: isolate;
}

.how-step::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 16px;
  padding: 1.5px;
  background:
    linear-gradient(90deg, transparent 0%, transparent 20%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.1) 45%, transparent 60%, transparent 100%) top / 100% 1.5px no-repeat,
    linear-gradient(90deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0.1) 65%, transparent 80%, transparent 100%) bottom / 100% 1.5px no-repeat,
    linear-gradient(0deg, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.1) 55%, transparent 70%, transparent 100%) left / 1.5px 100% no-repeat,
    linear-gradient(0deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0.1) 65%, transparent 80%, transparent 100%) right / 1.5px 100% no-repeat,
    rgba(255, 255, 255, 0.08);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  box-shadow:
    inset -80px 40px 100px -60px rgba(255, 255, 255, 0.015);
}

.how-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.how-step::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 16px;
  padding: 1.5px;
  background:
    linear-gradient(90deg, transparent 0%, transparent 20%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.1) 45%, transparent 60%, transparent 100%) top / 100% 1.5px no-repeat,
    linear-gradient(90deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0.1) 65%, transparent 80%, transparent 100%) bottom / 100% 1.5px no-repeat,
    linear-gradient(0deg, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.1) 55%, transparent 70%, transparent 100%) left / 1.5px 100% no-repeat,
    linear-gradient(0deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0.1) 65%, transparent 80%, transparent 100%) right / 1.5px 100% no-repeat,
    rgba(255, 255, 255, 0.08);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.how-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.how-step__icon {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  flex-shrink: 0;
  overflow: visible;
}

.how-step__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how-step__number {
  font-size: 21px;
  font-weight: 600;
  color: #da2635;
}

.how-step__title {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.how-step__desc {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.how-step__arrow {
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  font-size: 24px;
  color: rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.how-step:last-child .how-step__arrow {
  display: none;
}

/* ============================================================
   NEXT SECTION
   ============================================================ */
.section-next {
  padding: 48px 80px;
}

.section-next__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #e8192c;
  text-transform: uppercase;
}

/* ============================================================
   WHO SECTION
   ============================================================ */
.who-section {
  padding: 40px 80px 60px;
  background: #030713;
  overflow: visible;
}

.who-section__header {
  margin-bottom: 40px;
}

.who-section__label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #c2222e;
  text-transform: uppercase;
  transform: scaleX(1.25);
  transform-origin: left center;
}

.who-section__content {
  display: grid;
  grid-template-columns: 400px 1fr 650px;
  gap: 50px;
  align-items: start;
}

.who-section__left {
  position: relative;
}

.who-section__image {
  width: 400px;
  height: 280px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.who-section__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 7, 19, 0.3);
  pointer-events: none;
}

.who-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.9;
  filter: brightness(0.95);
  image-rendering: auto;
  image-rendering: smooth;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.who-section__middle {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.who-section__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.who-section__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
}

.who-section__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin: 0;
  transform: scaleX(1.25);
  transform-origin: left center;
}

.who-section__title-red {
  color: #e8192c;
}

.who-section__title-handwritten {
  font-family: 'Caveat', cursive;
  color: #db1e3d;
  font-style: italic;
  font-size: 1.3em;
  letter-spacing: -1px;
  text-shadow:
    0 0 16px rgba(219, 30, 61, 0.6),
    0 0 8px rgba(219, 30, 61, 0.5),
    0 0 4px rgba(219, 30, 61, 0.4);
  font-weight: 400;
  display: inline-block;
  transform: rotate(-8deg);
}

.who-section__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
}

.who-section__text p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.who-section__stats {
  display: flex;
  align-items: stretch;
}

.who-stat-container {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  background-clip: padding-box;
  border-radius: 16px;
  padding: 32px 36px;
  width: 100%;
  gap: 24px;
  position: relative;
  isolation: isolate;
}

.who-stat-container::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 16px;
  padding: 1.5px;
  background:
    linear-gradient(90deg, transparent 0%, transparent 20%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.1) 45%, transparent 60%, transparent 100%) top / 100% 1.5px no-repeat,
    linear-gradient(90deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0.1) 65%, transparent 80%, transparent 100%) bottom / 100% 1.5px no-repeat,
    linear-gradient(0deg, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.1) 55%, transparent 70%, transparent 100%) left / 1.5px 100% no-repeat,
    linear-gradient(0deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0.1) 65%, transparent 80%, transparent 100%) right / 1.5px 100% no-repeat,
    rgba(255, 255, 255, 0.08);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  box-shadow:
    inset -80px 40px 100px -60px rgba(255, 255, 255, 0.015);
}

.who-stat-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.who-stat-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.who-stat-row--offset {
  padding-left: 5px;
}

.who-stat-separator {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.who-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
}

.who-stat-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.who-stat__number {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #e8192c;
  line-height: 1;
  text-align: right;
  padding-right: 4px;
  text-shadow: 0 0 12px rgba(232, 25, 44, 0.4), 0 0 6px rgba(232, 25, 44, 0.3);
}

.who-stat__label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  padding: 40px 80px 60px;
  background: #030713;
  overflow: hidden;
}

.reviews-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.reviews-section__header-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews-section__label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #c2222e;
  text-transform: uppercase;
  transform: scaleX(1.25);
  transform-origin: left center;
}

.reviews-section__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  transform: scaleX(1.08) scaleY(0.88);
  transform-origin: left center;
}

.reviews-section__nav {
  display: none;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 0;
  background: #030713;
}

.cta-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 80px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  background-clip: padding-box;
  transition: background 0.2s;
  overflow: visible;
  position: relative;
  isolation: isolate;
}

.cta-section__content::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 0;
  padding: 1.5px;
  background:
    linear-gradient(90deg, transparent 0%, transparent 20%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.1) 45%, transparent 60%, transparent 100%) top / 100% 1.5px no-repeat,
    linear-gradient(90deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0.1) 65%, transparent 80%, transparent 100%) bottom / 100% 1.5px no-repeat,
    linear-gradient(0deg, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.1) 55%, transparent 70%, transparent 100%) left / 1.5px 100% no-repeat,
    linear-gradient(0deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0.1) 65%, transparent 80%, transparent 100%) right / 1.5px 100% no-repeat,
    rgba(255, 255, 255, 0.08);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  box-shadow:
    inset -80px 40px 100px -60px rgba(255, 255, 255, 0.015);
}

.cta-section__content::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.cta-section__content::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.cta-section__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -30px;
  position: relative;
}

.cta-section__pointer-arrow {
  position: absolute;
  right: -310px;
  top: -85px;
  transform: rotate(180deg) scaleY(-1.5) scaleX(-1.9);
  width: 150px;
  height: auto;
  opacity: 0.8;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(232, 25, 44, 0.4)) drop-shadow(0 0 16px rgba(232, 25, 44, 0.2));
}

.cta-section__label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #c2222e;
  text-transform: uppercase;
  transform: scaleX(1.25);
  transform-origin: left center;
  margin-bottom: 20px;
}

.cta-section__title {
  font-family: 'Golos Text', 'Inter', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transform: scaleX(1.28) scaleY(0.85);
  transform-origin: left center;
  color: #ffffff;
  margin-top: -20px;
}

.cta-section__desc {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  transform: scaleX(1.12);
  transform-origin: left center;
  margin-top: -8px;
  margin-left: 2px;
}

.cta-section__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: linear-gradient(180deg, #ed2f3e 0%, #b01722 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 10px;
  width: 100%;
  max-width: 380px;
  margin-top: 16px;
  margin-bottom: -18px;
  transition: box-shadow 0.2s, transform 0.15s, filter 0.2s;
  box-shadow: 0 4px 24px rgba(232, 25, 44, 0.45);
  position: relative;
}

.cta-section__btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 32px rgba(232, 25, 44, 0.65);
  transform: translateY(-1px);
}

.cta-section__btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-section__btn-arrow svg {
  display: block;
}

.cta-section__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-section__bonuses-label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #c2222e;
  text-transform: uppercase;
  transform: scaleX(1.25);
  transform-origin: left center;
  margin-bottom: 4px;
}

.cta-section__bonuses-grid {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.cta-bonus-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 12px 14px 76px;
  border-radius: 14px;
  width: 240px;
  flex-shrink: 0;
  background: rgba(40, 60, 100, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.2s, border-color 0.2s;
  isolation: isolate;
  position: relative;
}

.cta-bonus-card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 14px;
  padding: 1.5px;
  background:
    linear-gradient(90deg, transparent 0%, transparent 20%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.1) 45%, transparent 60%, transparent 100%) top / 100% 1.5px no-repeat,
    linear-gradient(90deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0.1) 65%, transparent 80%, transparent 100%) bottom / 100% 1.5px no-repeat,
    linear-gradient(0deg, transparent 0%, transparent 30%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.1) 55%, transparent 70%, transparent 100%) left / 1.5px 100% no-repeat,
    linear-gradient(0deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0.1) 65%, transparent 80%, transparent 100%) right / 1.5px 100% no-repeat,
    rgba(255, 255, 255, 0.08);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  box-shadow:
    inset -80px 40px 100px -60px rgba(255, 255, 255, 0.015);
}

.cta-bonus-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.cta-bonus-card__icon {
  position: absolute;
  top: 16px;
  left: 18px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #050b17;
  color: #e8192c;
  border: 1.5px solid rgba(232, 25, 44, 0.6);
  box-shadow:
    0 0 12px rgba(232, 25, 44, 0.35),
    inset 0 0 8px rgba(232, 25, 44, 0.1);
}

.cta-bonus-card__icon svg {
  filter: drop-shadow(0 0 6px rgba(232, 25, 44, 0.8));
}

.cta-bonus-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cta-bonus-card__title {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.cta-bonus-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin-top: 2px;
}

.reviews-section__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.reviews-section__nav-btn:hover {
  background: rgba(232, 25, 44, 0.1);
  border-color: rgba(232, 25, 44, 0.3);
  color: #e8192c;
}

.reviews-section__slider {
  overflow: visible;
  position: relative;
}

.reviews-section__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 8px;
}

.reviews-section__track>.reveal {
  display: flex;
}

.review-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 20px;
  padding: 28px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 25, 44, 0.25);
  position: relative;
  isolation: isolate;
  transition: all 0.3s;
  overflow: hidden;
  box-shadow:
    inset 0 0 80px rgba(232, 25, 44, 0.12),
    inset 0 0 20px rgba(232, 25, 44, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.review-card:hover {
  border-color: rgba(232, 25, 44, 0.45);
  box-shadow:
    inset 0 0 100px rgba(232, 25, 44, 0.18),
    inset 0 0 30px rgba(232, 25, 44, 0.1),
    0 10px 40px rgba(232, 25, 44, 0.1);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 25, 44, 0.5) 50%, transparent 100%);
  box-shadow: 0 0 20px rgba(232, 25, 44, 0.6);
  pointer-events: none;
  z-index: 1;
}

.review-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 0;
  margin-bottom: 20px;
  border-bottom: none;
}

.review-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.review-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.2;
}

.review-card__sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card__section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__section-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  filter:
    drop-shadow(0 0 3px rgba(255, 18, 18, 0.5)) drop-shadow(0 0 1px rgba(255, 0, 0, 0.3));
}

.review-card__section-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  padding-left: 38px;
}

.review-card__quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  margin-top: auto;
  position: relative;
}

.review-card__quote-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
  padding: 0 8px;
}

.review-card__quote-line {
  flex: 1;
  height: 2px;
  max-width: none;
}

.review-card__quote-line--left {
  background: linear-gradient(90deg, transparent 0%, rgba(232, 25, 44, 0.6) 100%);
}

.review-card__quote-line--right {
  background: linear-gradient(90deg, rgba(232, 25, 44, 0.6) 0%, transparent 100%);
}

.review-card__quote-mark {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: #e8192c;
  line-height: 1;
  opacity: 0.9;
  letter-spacing: 0.3em;
  padding-top: 2px;
  flex-shrink: 0;
  text-shadow:
    0 0 12px rgba(232, 25, 44, 0.6),
    0 0 6px rgba(232, 25, 44, 0.4);
}

.review-card__quote-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 24px 80px;
  background: #030713;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transform: scaleY(1.15);
  transform-origin: center;
}

.footer__logo-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 12px rgba(232, 25, 44, 0.8)) drop-shadow(0 0 6px rgba(232, 25, 44, 0.6));
  margin-top: 1px;
}

.footer__logo-x svg {
  display: block;
}

.footer__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer__social {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   ANIMATIONS (Reveal on Scroll)
   ============================================================ */

.reveal {
  opacity: 0;
  filter: blur(10px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity, filter;
}

.reveal--active {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0) scale(1) !important;
}

.reveal--fade-in {
  transform: translateY(0);
}

.reveal--slide-up {
  transform: translateY(40px);
}

.reveal--slide-down {
  transform: translateY(-40px);
}

.reveal--slide-left {
  transform: translateX(40px);
}

.reveal--slide-right {
  transform: translateX(-40px);
}

.reveal--scale-up {
  transform: scale(0.98);
}

/* Staggered Delays for Transitions & Animations */
.delay-1 {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

/* Custom Animation: Hero Entrance */
.hero-reveal {
  animation: heroReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Micro-animations for buttons and cards */
.hero__btn,
.navbar__cta,
.cta-section__btn {
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease, filter 0.6s ease !important;
}

.hero__btn:hover,
.navbar__cta:hover,
.cta-section__btn:hover {
  transform: translateY(-6px) scale(1.01) !important;
}

.bonus-card,
.how-step,
.review-card,
.cta-bonus-card {
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease !important;
}

.bonus-card:hover,
.how-step:hover,
.review-card:hover,
.cta-bonus-card:hover {
  transform: translateY(-12px) !important;
  background: rgba(232, 25, 44, 0.08) !important;
  border-color: rgba(232, 25, 44, 0.3) !important;
  box-shadow: 0 15px 35px rgba(232, 25, 44, 0.1) !important;
}

.how-step__icon svg {
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.how-step:hover .how-step__icon svg {
  transform: scale(1.1) rotate(2deg);
}

/* Soft & Elegant Reveal for Reviews */
.review-card.reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s ease !important;
}

.review-card.reveal--active {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: blur(0) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 40px;
  }

  .hero__content {
    width: 60%;
    padding: 80px 0 120px 40px;
  }

  .bonuses {
    left: 40px;
    bottom: 40px;
  }

  .bonuses__grid>.hero-reveal {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  .hero-wrapper {
    margin: 0;
    margin-top: 80px;
    border-radius: 0;
    border: none;
  }

  .hero {
    flex-direction: column;
    height: auto;
    max-height: none;
  }

  .hero__content {
    width: 100%;
    padding: 60px 20px 40px;
    align-items: center;
    text-align: center;
  }

  .hero__badge {
    transform: scaleX(1) scaleY(1);
    transform-origin: center;
  }

  .hero__title {
    transform: scaleX(1.1) scaleY(0.9);
    transform-origin: center;
    margin-top: 0;
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero__desc {
    transform: scaleX(1);
    transform-origin: center;
    font-size: 18px;
    margin-top: 10px;
    margin-left: 0;
  }

  .hero__btn {
    margin-top: 30px;
    max-width: 100%;
  }

  .hero__image-wrap {
    width: 100%;
    height: 400px;
    margin-top: 20px;
  }

  .hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  }

  .hero__image-wrap::before {
    display: none;
  }

  .bonuses {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    margin-top: -40px;
  }

  .bonuses__grid {
    flex-direction: column;
    gap: 16px;
  }

  .bonuses__grid>.hero-reveal {
    width: 100%;
  }

  .bonus-card {
    padding: 20px 20px 20px 84px;
  }

  .bonus-card__icon {
    left: 16px;
  }

  .how-section {
    padding: 60px 20px;
    text-align: center;
  }

  .how-section__label,
  .how-section__title {
    transform-origin: center center;
  }

  .how-section__steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-step {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .how-step__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .how-step__icon svg {
    width: 120px;
    height: 120px;
  }

  .who-section {
    padding: 60px 20px;
  }

  .who-section__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .who-section__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
  }

  .who-section__middle {
    align-items: center;
    text-align: center;
  }

  .who-section__title-wrapper {
    align-items: center;
  }

  .who-section__label,
  .who-section__subtitle {
    transform-origin: center center;
    transform: scaleX(1.1);
  }

  .who-section__text {
    max-width: 100%;
  }

  .who-stat-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .who-stat-divider {
    display: none;
  }

  .who-stat {
    justify-content: center;
    text-align: left;
  }

  .who-stat__number {
    font-size: 36px;
  }

  .reviews-section {
    padding: 60px 20px;
  }

  .reviews-section__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .reviews-section__label,
  .reviews-section__title {
    transform-origin: center center;
  }

  .reviews-section__nav {
    display: flex;
    gap: 12px;
  }

  .reviews-section__nav-btn {
    opacity: 0;
    transform: translateY(10px);
    animation: arrowReveal 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }

  .reviews-section__nav-btn:nth-child(1) {
    animation-delay: 0.4s;
  }

  .reviews-section__nav-btn:nth-child(2) {
    animation-delay: 0.5s;
  }

  @keyframes arrowReveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .reviews-section__slider {
    margin: 0 -20px;
    /* Pull out to edges */
    padding: 0 20px;
    /* But keep content inside */
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
  }

  .reviews-section__slider::-webkit-scrollbar {
    display: none;
  }

  .reviews-section__track {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    padding-bottom: 20px;
    width: max-content;
  }

  .review-card {
    scroll-snap-align: center;
    width: calc(100vw - 40px);
    /* Full width minus side paddings */
    min-width: 280px;
    max-width: 400px;
    flex-shrink: 0;
  }

  .cta-section__content {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 48px;
    text-align: center;
  }

  .cta-section__left {
    align-items: center;
    margin-top: 0;
  }

  .cta-section__label,
  .cta-section__title,
  .cta-section__bonuses-label {
    transform-origin: center center;
  }

  .cta-section__title {
    transform: scaleX(1.1) scaleY(0.9);
    font-size: clamp(28px, 7vw, 42px);
    line-height: 1.1;
  }

  .cta-section__desc {
    transform: scaleX(1);
    transform-origin: center;
    font-size: 17px;
    line-height: 1.5;
    margin-top: 0;
  }

  .cta-section__pointer-arrow {
    display: none;
  }

  .cta-section__btn {
    max-width: 100%;
    margin-bottom: 0;
    padding: 18px 24px;
  }

  .cta-section__right {
    align-items: center;
    width: 100%;
  }

  .cta-section__bonuses-grid {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .cta-bonus-card {
    width: 100%;
    padding: 20px 20px 20px 84px;
    text-align: left;
  }

  .cta-bonus-card__icon {
    top: 20px;
    left: 16px;
    width: 52px;
    height: 52px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer__content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 0;
    position: relative;
  }

  .footer__logo {
    justify-content: center;
  }

  .footer__copyright {
    position: static;
    transform: none;
    order: 3;
    margin-top: 8px;
  }

  .footer__social {
    order: 2;
  }
}