/* Подключение переменных шрифтов */
:root {
  --font-base: 'Red Hat Display', sans-serif;
  --font-heading: 'Instrument Sans', sans-serif;
  --font-size-base: 15px;
  --line-height-base: 1.5;
  --letter-spacing-base: 0;
  /* Цвета (пример) */
  --color-bg: #000;
  --color-text: #fff;
  --color-accent: #ff6600;
  --max-width: 1200px;
}

/* Сброс и базовые стили */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* Контейнер */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 0;
}

/* Кнопки */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-base);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  transition: background 0.3s ease;
}
.btn--primary {
  background-color: var(--color-accent);
  color: #fff;
}
.btn--primary:hover {
  background-color: darken(var(--color-accent), 10%);
}
.btn--dark  {
  color: #fff;
  width: 200px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  border-radius: 8px;
  border: 1.5px solid;
  background: #000212;
  border: 1px solid;
  box-shadow: -4px -2px 15.6px 2px #CF3A099E inset;
  border-image-source: linear-gradient(96.79deg, #532A1A 43.27%, #FF5B00 100.36%);
}
.btn--accent {
  background: radial-gradient(76.5% 1131.66% at 23.5% 57.69%, #FF5B00 0%, #FF2800 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  color: #fff;
  width: 200px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  border-radius: 8px;
  border: 1.5px solid;
  border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.3) -1.06%, rgba(255, 255, 255, 0) 101.06%);
  box-shadow: -0.75px 2.25px 30.5px 20.75px #FFFFFF2B inset;
  box-shadow: 5px 5px 11.7px 0px #FFAA21 inset;
}
.btn--border-orange  {
  text-decoration: none;
  color: #fff;
  width: 200px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  border-radius: 8px;
  border: 1.5px solid;
  background: rgba(0, 2, 18, 1);
  border: 1px solid;
  border-image-source: linear-gradient(96.79deg, #532A1A 43.27%, #FF5B00 100.36%);
  box-shadow: -4px -2px 15.6px 2px rgba(207, 58, 9, 0.62) inset;
}
.btn--secondary {
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}
section + section {
  margin-top: 4rem;
  position: relative;
}
h1, h2, h3 {
  font-family: var(--font-heading);
  margin: 0 0 1rem;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-top: 2rem; }
h3 { font-size: 1.5rem; }

/* ================= Header & Nav ================= */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: #000;
  z-index: 1000;
}
.header__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
}
.header__logo img {
  width: 152px;
}

/* --------- Desktop Nav --------- */
.nav--desktop {
  margin-left: auto;
  display: none;
}
.nav--desktop .nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav--desktop .nav__list a {
  text-decoration: none;
  transition: opacity .2s;
  color: rgba(255, 255, 255, 0.7);
  font-family: Red Hat Display;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
}
.nav--desktop .nav__list a:hover {
  color: #fff;
}

/* --------- Mobile Nav --------- */
body.nav-open {
  overflow: hidden;
}

/* плавный скролл */
html {
  scroll-behavior: smooth;
}

/* ——————— Hero Section ——————— */
.hero {
  position: relative;
  padding: 6rem 0 0rem;
  overflow: hidden;
}
.hero__content {
  padding: 100px 0px 0px 100px;
    display: flex;
    flex-direction: column;
    gap: 120px;
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero__visual {
  position: absolute;
  right: 0;
  top: 0;
}
.hero__subtitle {
  font-family: var(--font-base);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 12px;
  line-height: 21.6px;
  letter-spacing: 19%;
  vertical-align: middle;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 700;
  font-size: 64px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  margin-bottom: 40px;
}

.hero__btn {
  font-family: var(--font-base);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}

.hero__visual img {
  display: block;
  height: 668px;
}

.section__title {
  color: #fff;
  font-family: Instrument Sans;
  font-weight: 600;
  font-size: 42px;
  line-height: 56px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.mini-nav__progress--3 {
  width: calc(100% / 5)!important;
}
.mini-nav__progress--4 {
  width: calc(100% / 1)!important;
}

/* ========== About Section ========== */
.about {
  /* фоновая картинка */
  background-image: url('../images/about-bg.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section__title--left {
  text-align: left;
  margin:0;
}
.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* Обёртка графики + текста */
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Графика */
.about__visual img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Текстовая часть */
.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 500px;
}

.about__heading {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
}

.about__lead {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}

/* Фичи */
.about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature__title {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
  margin: 0;
}

.feature__text {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #ccc;
}

/* Кнопка */
.about__btn {
  align-self: start;
  margin-top: 16px;
}
.about__features {
  grid-template-columns: repeat(2, 1fr);
}
/* ========== Mini‑menu (трек + ползунок) ========== */
.mini-nav {
  position: relative;
  max-width: 419px;
  margin: 25px auto 0;
  border-bottom: 1px solid #ffffff30;
  z-index: 1;
}
.mini-nav-left {
  margin: 25px 0 0 0;
}

.mini-nav__list {
  width: 419px;
  display: flex;
  list-style: none;
  margin: 0 0 15px;
  padding: 0;
}

.mini-nav__item:nth-of-type(2n) {
  flex: 1;
}
.mini-nav__item {
  text-align: center;
}

.mini-nav__item a {
  display: inline-block;
  color: #ffffffb3;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color .2s;
}
.mini-nav__item.active a,
.mini-nav__item a:hover {
  color: #fff;
}

.mini-nav__progress {
  position: absolute;
  bottom: -1px;    
  left: 0;
  width: calc(100% / 2);  
  height: 0;
  border: 1px solid transparent;
  border-image-source: linear-gradient(
    90deg,
    rgba(243,151,125,0) 35.97%,
    #ED4300           100%
  );
  border-image-slice: 1;
  backdrop-filter: blur(4.8px);
  transform: translateX(-100%);
  transition: transform .5s ease-out;
  z-index: 2;
}

.mini-nav__progress.visible.index-0 { transform: translateX(0%); }
.mini-nav__progress.visible.index-1 { transform: translateX(0%); }
.mini-nav__progress.visible.index-2 { transform: translateX(0%); }

.btn--accent {
  background: linear-gradient(90deg, #ff5b00, #ee6c1b);
  color: #fff;
}

.btn--accent:hover {
  box-shadow: 0 0 30px rgba(255,91,0,0.8);
}

.services__inner {
  text-align: center;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  margin-top: 60px;
  list-style: none;
  padding: 0;
}

.service {
  background-color: inherit;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: background-color 0.3s, box-shadow 0.3s;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid rgba(29, 29, 29, 1);
}
.service--active {
  position: relative;
  overflow: hidden;
}

.service--active::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(120deg, rgb(27 25 25 / 0%) 0%, rgb(21 20 20 / 35%) 50%, rgb(16 15 15 / 14%) 100%);
  transform: skewX(-20deg);
  filter: blur(4px);
  animation: shimmer 1.5s infinite;
  pointer-events: none;
  z-index: 1;
}

.service--active > * {
  position: relative;
  z-index: 2;
}

/* ключевые кадры */
@keyframes shimmer {
  from { transform: translateX(-150%) skewX(-20deg); }
  to   { transform: translateX(150%)  skewX(-20deg); }
}

.service__icon {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 8px rgba(255,91,0,0.6));
}

.service__title {
  margin: 0;
  font-family: Instrument Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 17px;
  line-height: 135%;
  letter-spacing: 0%;
  color: #ffffffb3;
}
.service--active {
  background-image: url(../images/services-item-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.service__title--active {
  color: #fff;
}
.service__text {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ccc;
  max-width: 200px;
  text-align: center;
}

.loyalty__inner {
  text-align: center;
}

.section__subtitle {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
  margin-top: 8px;
}

.loyalty__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .loyalty__cards {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
}

.card { 
  border: 2px solid transparent;
  border-radius: 24px;
  background-image: linear-gradient(#000000, #000000), linear-gradient(180deg, #6f6e6bcc, #ffaa2100);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 322px;
}

.card--active {
  background-image: linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0)), linear-gradient(rgb(255, 91, 0), rgba(255, 170, 33, 0));
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    border-radius: 24px;
    padding: 24px;
    gap: 16px;
}

.card__icon {
  width: 152px;
  margin-top: -70px;
}

.card__title {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  margin: 0;
}

.card__vip {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  background: linear-gradient(0deg, #202020, #202020);
  width: 134px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  display: flex;
  opacity: 1;
  border-radius: 4px;
}
.card__vip::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 32px;
  background: url(../images/icons/vip-left.svg) no-repeat center center;
  background-size: contain;
}

.card__vip::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 32px;
  background: url("../images/icons/vip-right.svg") no-repeat center center;
  background-size: contain;
}
.card__vip--active {
  background: linear-gradient(0deg, #FF5B00, #FF5B00);
  position: relative;
}
.card__vip--active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 32px;
  background: url(../images/icons/vip-left-orange.svg) no-repeat center center;
  background-size: contain;
}

.card__vip--active::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 32px;
  background: url("../images/icons/vip-right-orange.svg") no-repeat center center;
  background-size: contain;
}
.card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.card__features li {
  color: #ffffffb3;
  margin-bottom: 8px;
  position: relative;
  padding-left: 30px;
  font-family: Red Hat Display;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  gap: 20px;
  display: flex;
}

.card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/custom-check.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.journeys__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 1024px) {
  .journeys__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }
}

.journeys__inner {
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.journeys__visual {
  background: rgba(17, 17, 17, 1);
  border-radius: 38px;
  position: relative;
  padding: 50px;
}
.journeys__visual img {
  bottom: 0;
    left: 0;
    position: absolute;
    border-radius: 38px;
}

.journeys__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.journeys__text {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}

.journeys__nav {
  margin-top: 32px;
}

.journeys__tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
  gap: 40px;
}

.journeys__tab {
  position: relative;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #ccc;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.3s;
}

.journeys__tab:hover {
  color: #fff;
}

.journeys__tab--active {
  color: #fff;
}

.journeys__tab--active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ff5b00, #ee6c1b);
  border-radius: 2px;
}

.analytics__inner {
  text-align: center;
  max-width: 80%;
}
.analytics-ellipse-left {
  position: absolute;
  left: 0;
  height: 800px;
}
.analytics-ellipse-right {
  position: absolute;
    right: 0;
    bottom: -100px;
    height: 800px;
}
.section__subtitle {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
  margin-top: 8px;
}

.analytics__visuals {

  margin: 60px 0;
}

@media (min-width: 768px) {
  .analytics__visuals {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.analytics__visual {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.analytics__stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 576px) {
  .analytics__stats {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}


.stat__number {
  font-size: 2rem;
  font-weight: bold;
  transition: color 0.3s;
}
.stat__number:hover {
  color: #ff5b00;
  cursor: default;
}
.stat__label {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #ccc;
  margin: 0;
  text-transform: uppercase;
}
.analytics__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;             /* расстояние между колонками */
  margin-top: 60px;
}

.stat {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat__number {
  font-family: Instrument Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 64px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  margin: 0;
}
.stat-wrap {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
}
.stat-wrap span {
  font-family: Instrument Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background: url("../images/icons/separator.svg") no-repeat center center;
  background-size: contain;
  height: 100%;
}

.stat__label {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;  /* 14px */
  line-height: 1.5;
  color: #ccc;
  margin: 8px 0 0;
  text-transform: none;
}
.marketing {
  padding: 30px 0;
  background-color: #000;
}

.marketing__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.marketing__content {
  flex: 1;
}
.marketing__visual {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
}

.marketing__visual::before, .journeys__visual:before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    45deg,
    rgba(16, 11, 11, 0.16) 0%,
    rgba(16, 11, 11, 0.08) 25%,
    rgba(0, 0, 0, 0   ) 50%,
    rgba(0, 0, 0, 0.08) 75%,
    rgba(0, 0, 0, 0.34) 100%
  );
  background-size: 200% 200%;
  /* общие настройки анимации */
  animation:
    marketing-shimmer 2s infinite linear,
    marketing-fade    2s infinite ease-in-out;
  pointer-events: none;
}

.marketing__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.marketing__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.marketing__icon {
  width: 48px;
  height: 48px;
}

.marketing__text {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem; /* 15px */
  color: #fff;
}

.marketing__visual {
  flex: 1;
    display: flex;
    justify-content: center;
    background: rgba(17, 17, 17, 1);
    padding: 50px;
    border-radius: 38px;
    position: relative;
}

.marketing__image {
  max-width: 100%;
  border-radius: 24px;
}
.marketing-vector {
  position: absolute;
  left: 0;
  bottom: 0;
}
.section__nav {
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
  gap: 48px;
}

.section__nav-link {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #ccc;
  text-decoration: none;
  position: relative;
  padding-bottom: 8px;
}

.section__nav-link--active {
  color: #fff;
}

.section__nav-link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255,91,0,1) 0%,
    rgba(255,179,19,1) 50%,
    rgba(255,91,0,1) 100%
  );
}
/* Заголовок секции */
#gamification-title{ margin-bottom:20px; }

/* Табы */
.gamification__tabs{
  display:flex;           /* фиксанул опечатку */
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  background:#202020;
  border-radius:8px;
  width:max-content;
  margin:0 auto;
}
.gamification__tab{
  background:inherit;
  color:rgba(255,255,255,.7);
  border:0;
  border-radius:10px;
  padding:10px 14px;
  cursor:pointer;
  font-size:16px;
}
.gamification__tab[aria-selected="true"]{
  background: radial-gradient(76.5% 1131.66% at 23.5% 57.69%, #FF5B00 0%, #FF2800 100%);
  color:#fff;
  outline:none;
  border:1.5px solid;
  border-image-source: linear-gradient(180deg, rgba(255,255,255,.3) -1.06%, rgba(255,255,255,0) 101.06%);
  box-shadow:
    -0.75px 2.25px 30.5px 20.75px rgba(255,255,255,.17) inset,
     5px 5px 11.7px 0 rgba(255,170,33,1) inset;
}

/* Слайдер + панели */
.gamification__slider{ position:relative; margin-top:28px; }
.gamification__panels{ position:relative; }

.gamification__panel{
  display:grid;
  gap:28px;
  align-items:stretch;
  /* левая колонка — min 280, max 420; правая — всё остальное */
  grid-template-columns: minmax(280px, 420px) minmax(0,1fr);
}
.gamification__panel[hidden]{ display:none; }

/* Кнопки навигации */
.slider__nav{
  position:absolute; top:50%; transform:translateY(-50%);
  background:#1c1c1c; border:0; border-radius:10px; color:#fff;
  width:40px; height:40px; cursor:pointer;
}
.slider__nav--prev{ left:-8px; }
.slider__nav--next{ right:-8px; }

/* Карточка слева + визуал справа */
.slide__card{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width:100%;              /* не фиксируем ширину, колонка управляет сеткой */
  border:1px solid rgba(45,45,45,1);
  border-radius:24px;
  padding:32px;
}
.slide__visual{
  position: relative;
    border-radius: 22px;
    /* padding: 10px; */
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03), 0 30px 60px rgba(0, 0, 0, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(45, 45, 45, 1);
}
.slide__title {
font-weight: 700;
font-size: 26px;
line-height: 140%;
letter-spacing: 0px;

}
/* Убираем стандартные маркеры */
.slide__features{
  list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Отступ под иконку слева */
.slide__features li{
  position: relative;
    padding-left: 28px;
    color: rgba(222, 222, 222, 1);
    font-size: 15px;         /* можно 32px, если иконка крупнее */
}

/* Кастомный маркер */
.slide__features li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;                   /* вертикальное выравнивание с текстом */
  width: 21px;                  /* подгони под свой SVG/PNG */
  height: 21px;
  background-image: url("../images/icons/check.svg"); /* см. примечание ниже */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.slide__card, .slide__visual{ min-width:0; } /* чтобы контент корректно сжимался */
.slide__visual img{ width:100%; height:auto; display:block; border-radius:16px; }

/* Анимации при активации панели */
@keyframes fadeUp{ from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }
@keyframes scaleIn{ from{opacity:0;transform:scale(.96)} to{opacity:1;transform:scale(1)} }

.gamification__panel.is-active [data-anim]{ animation:fadeUp .6s ease forwards; }
.gamification__panel.is-active .slide__visual [data-anim],
.gamification__panel.is-active .slide__visual img{
  animation:scaleIn .5s ease .1s forwards; opacity:0;
}
/* задержки для списка фич */
.gamification__panel.is-active .slide__features li:nth-child(1){ animation-delay:.08s; }
.gamification__panel.is-active .slide__features li:nth-child(2){ animation-delay:.16s; }
.gamification__panel.is-active .slide__features li:nth-child(3){ animation-delay:.24s; }

/* Мобилка: стекаем блоки, визуал сверху */
@media (max-width:900px){
  .gamification__panel{ grid-template-columns:1fr; }
  .slide__visual{ order:-1; }
}

.btn--outline {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #ff5b00;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
  cursor: pointer;
  transition: background 0.3s;
}

.btn--outline:hover {
  background: rgba(255,91,0,0.1);
}

.slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20,20,20,0.8);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}
/* Контейнер правой колонки со стилем карточки из макета */
.slide__visual--wheel{
  position: relative;
  border-radius: 24px;
  padding: 16px;

  /* КАРТИНКА В ФОНЕ */
  background: url("../images/fortune/wheel-bg.png") center / cover no-repeat;

  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 30px 60px rgba(0,0,0,.45);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  min-height: 420px;
}
/* колесо слегка «перекатывается», только когда не spinning */
.fw:not(.is-spinning) .fw__disc{
  animation: fw-tease 6s cubic-bezier(.42,0,.2,1) infinite 1.2s;
  transform-origin: 50% 50%;
  will-change: transform;
}

/* чуть быстрее при ховере */
.fw:hover:not(.is-spinning) .fw__disc{ animation-duration: 4s; }

/* центр — мягкий пульс, чтобы звать кликнуть */
.fw:not(.is-spinning) .fw__center-img{
  animation: fw-pulse 2.8s ease-in-out infinite;
  will-change: transform, filter;
}

/* во время реального спина отключаем все idle-анимации */
.fw.is-spinning .fw__disc,
.fw.is-spinning .fw__center-img{ animation: none; }

/* keyframes */
@keyframes fw-tease{
  0%, 60%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(1.4deg); }
  20% { transform: rotate(-1.2deg); }
  30% { transform: rotate(0.9deg); }
  40% { transform: rotate(-0.6deg); }
  50% { transform: rotate(0.3deg); }
}
@keyframes fw-pulse{
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,91,0,.0)); }
  50%     { transform: scale(1.04); filter: drop-shadow(0 0 10px rgba(255,91,0,.35)); }
}

/* уважение prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
  .fw__disc, .fw__center-img{ animation: none !important; }
}

/* Само колесо */
.fw{
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
}

.fw__disc{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform: rotate(var(--rot, 0deg));
  transition: transform var(--dur, 4s) cubic-bezier(.07,.67,.16,1);
  will-change: transform;
  pointer-events: none;
}
.fw__disc img{
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
  user-select: none; pointer-events: none;
}

/* Центральная кнопка */
.fw__center{
  position: absolute;
    inset: 0;
    margin: auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    letter-spacing: .3px;
    background: transparent;
  }
.fw__center span{ display:inline-block; font-size:14px; }



/* Текстовая часть справа */
.fw__ui .fw__title{
  font-size: 22px;
    margin: 0 0 8px;
    color: rgba(255, 210, 0, 1);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-family: Baloo 2;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 19.67px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 4%;
    vertical-align: middle;
    text-transform: uppercase;
}
.fw__ui p{ margin: 0 0 16px; font-size: 24px; font-weight: 800; }
.fw__result{ 
  font-family: Baloo 2;
font-weight: 700;
font-style: Bold;
font-size: 35.77px;
leading-trim: NONE;
line-height: 102%;
text-align: center;
letter-spacing: 1%;
}

/* Состояние «крутится» — блокируем клики */
#fortune-wheel.is-spinning [data-spin]{
  pointer-events: none;
  opacity: .7;
  cursor: wait;
}
/* сетка правой/левой колонок для этого слайда */
.slide__visual--wheel{
  display:grid;
  grid-template-columns:minmax(260px,420px) 1fr; /* слева до 420px, справа — всё остальное */
  gap:28px; align-items:center;
}
/* левая часть с колесом */
.fw{ position:relative; width:100%; aspect-ratio:1/1; max-width:420px; margin:0 auto; }
.fw__disc{
  position:absolute; inset:0;
  display:grid; place-items:center;
  transform:rotate(0deg); transform-origin:50% 50%;
  will-change:transform;
}
.fw__disc > img{ width:100%; height:100%; object-fit:contain; user-select:none; pointer-events:none; }

/* центр-кнопка */
.fw__center{ position: absolute;
    left: 30%;
    top: 30%;
    transform: translate(-50%, -50%);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}
.fw__center-img{ display:block; width:120px; height:120px; }

/* указатель справа (если используешь див) */
.fw__pointer{
  position:absolute; right:-12px; top:50%; transform:translateY(-50%);
  width:44px; height:44px;
  background:url("images/fortune/pointer.svg") center / contain no-repeat;
}

/* «качание» (idle) — видно, что колесо интерактивно */
.fw:not(.is-spinning) .fw__disc{
  animation: fw-tease 6s cubic-bezier(.42,0,.2,1) infinite 1.2s;
}
.fw:hover:not(.is-spinning) .fw__disc{ animation-duration:4s; }
.fw:not(.is-spinning) .fw__center-img{
  animation: fw-pulse 2.8s ease-in-out infinite;
}
.fw.is-spinning .fw__disc,
.fw.is-spinning .fw__center-img{ animation:none; }

/* keyframes */
@keyframes fw-tease{
  0%,60%,100%{ transform:rotate(0deg) }
  10%{ transform:rotate(1.4deg) }
  20%{ transform:rotate(-1.2deg) }
  30%{ transform:rotate(0.9deg) }
  40%{ transform:rotate(-0.6deg) }
  50%{ transform:rotate(0.3deg) }
}
@keyframes fw-pulse{
  0%,100%{ transform:scale(1); filter:drop-shadow(0 0 0 rgba(255,91,0,0)); }
  50%{ transform:scale(1.04); filter:drop-shadow(0 0 10px rgba(255,91,0,.35)); }
}

/* доступность для скрытого текста, если решишь вернуть sr-only */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

@media (max-width:900px){
  .slide__visual--wheel{ grid-template-columns:1fr; }
}
@media (prefers-reduced-motion:reduce){
  .fw__disc,.fw__center-img{ animation:none !important; }
}

/* Адаптив */
@media (max-width: 900px){
  .slide__visual--wheel{
    grid-template-columns: 1fr;
  }
  .fw{ order: -1; } /* колесо сверху */
}

.slider__nav--prev { left: 8px; display: none;}
.slider__nav--next { right: 8px; display: none;}
.faq {
  background-color: #000;
  color: #fff;
}
.faq {
   background: url(../images/faq-bg.png) center / cover no-repeat;
}
.faq__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.faq__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 60px;
  flex-direction: row;
  align-items: stretch;
}
.faq__intro > .mini-nav {
  margin-bottom: 40px;
}
.faq__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* заголовок+аватары наверху, меню внизу */
  flex: 1;                        /* чтобы занять всю высоту правого блока */
}

/* 3) Немного подправим правый список, чтобы он тоже растягивался */
.faq__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__intro {
  flex: 1;
  text-align: left;
}

.faq__subtitle {
   font-family: Instrument Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 40px;
  margin: 0 0 16px;
}

.faq__avatars {
  display: flex;
    gap: 16px;
    align-items: center;
}

.faq__avatar {
  height: 40px;
  border: 2px solid #111;
  object-fit: cover;
}

.faq__note {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.875rem;
  color: #ccc;
}

.faq__list {
  flex: 2;
  text-align: left;
}

.faq__item {
  overflow: hidden;
}

.faq__question {
  display: flex;
    justify-content: space-between;
    align-items: center;
    height: 144px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-family: Instrument Sans;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    padding: 40px;
    border: 1px solid hsla(0, 0%, 11%, 1);
}

.faq__question:hover {
  background-color: #1a1a1a;
}

.faq__icon {
  font-size: 1.25rem;
  transition: transform 0.3s;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 16px 24px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.875rem;
  color: #ccc;
  border-top: 1px solid #222;
}

.section__nav {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
}

.section__nav-link {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.875rem;
  color: #ccc;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.section__nav-link--active {
  color: #fff;
}

.section__nav-link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,91,0,1) 0%, rgba(255,179,19,1) 100%);
  transform: translateX(-50%);
}
/* ========== Contact Us ========== */
/* Фон картинкой для секции Contact */
.contact{
  background: url("../images/footer-bg.png") center / cover no-repeat;
}

.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* карточки */
.contact__cards {
  display: flex;
    flex-direction: column;
    gap: 32px;
    /* margin-top: 60px; */
    max-width: 927px;
    margin: 60px auto;
}
@media (min-width: 768px) {
  .contact__cards {
    flex-direction: row;
    align-items: stretch;
  }
}

.contact__card {
  background: rgba(13, 13, 13, 1);
    border-radius: 16px;
    padding: 24px;
    flex: 1;
    border: 1px solid rgba(40, 40, 40, 1);
}

.contact__card--form {
  display: flex;
  flex-direction: column;
  max-width: 65%;
}

.contact__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.contact__field {
  display: flex;
  flex-direction: column;
}

.contact__label {
  text-align: left;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  background-color: #202020;
  border: none;
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
}
.contact__textarea {
  resize: vertical;
}

/* промо-карточка справа */
.contact__card--promo {
  display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    max-width: 35%;
}
.promo__tag {
  display: inline-block;
  background: var(--Surface-tag-weak, rgba(255, 102, 55, 0.1));
  color: #ff5b00;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
}
.promo__title {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.5rem;
  margin: 0;
  color: #fff;
}

/* центрируем лого партнёров (если нужно) */
.partners__logos {
  text-align: center;
}

/* ========== Неоновый пульс на кнопке ========== */
.hero__btn,
.contact__card--form .btn {
  position: relative;
  z-index: 1;
}
.contact__card--form .btn {
  margin-top: 15px;
}

@keyframes neon-pulse {
  from {
    box-shadow:
      0 0 5px rgba(255, 91, 0, 0.8),
      0 0 10px rgba(255, 91, 0, 0.6),
      0 0 20px rgba(255, 91, 0, 0.4);
  }
  to {
    box-shadow:
      0 0 20px rgba(255, 91, 0, 1),
      0 0 30px rgba(255, 140, 0, 1),
      0 0 40px rgba(255, 140, 0, 0.8);
  }
}


/* ===== СКОЛЬЗЯЩАЯ ГРАДИЕНТ‑РАМКА ===== */
.hero__btn {
  overflow: hidden; /* чтобы псевдоэлемент не лез поверх текста */
  border-radius: 8px; /* ваш радиус */
}

/* псевдо‑элемент вместо border */
.hero__btn::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: -3px;    /* чуть больше толщины рамки */
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(255, 91, 0, 1) 0%,
    rgba(255, 170, 33, 1) 50%,
    rgba(255, 91, 0, 1) 100%
  );
  background-size: 200% 100%;
  z-index: -1;
  animation: border-slide 2s linear infinite;
}

@keyframes border-slide {
  0%   { background-position: 0%   0; }
  100% { background-position: 200% 0; }
}
/* ========== Footer ========== */
.footer {
  color: #fff;
  padding: 80px 0 50px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.875rem;
}

.footer__inner {
  /* контейнер уже ограничивает ширину и даёт отступы */
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 40px;  /* расстояние между верхней и нижней частью */
}

@media (min-width: 768px) {
  .footer__inner {
    gap: 24px;
  }
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-policy {
  border-top: 1px solid rgba(29, 29, 29, 1);
}
.footer__logo img {
  width: 151px;
  display: block;
}

.footer__nav {
  display: flex;
  gap: 32px;
}

.footer__nav-link {
  position: relative;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
}

.footer__nav-link:hover {
  color: #fff;
}

/* подчёркивание при hover или активном состоянии */
.footer__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff5b00, #ffaa21);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}

.footer__nav-link:hover::after,
.footer__nav-link--active::after {
  transform: scaleX(1);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__legal {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.footer__legal-link {
  color: rgba(112, 112, 112, 1);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 13px;
    text-transform: uppercase;
}
.footer__social a {
  text-decoration: none;
}
.footer__social {
border: 1px solid rgba(29, 29, 29, 1);
display: flex;
}
.footer__social img:last-child {
  border-right: none;
}
.footer__social img {
  height: 20px;
  display: flex;
}
.footer__social-item {
  border-right: 1px solid rgba(29, 29, 29, 1);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.footer__legal-link:hover {
  color: #fff;
}

.footer__copy {
  color: #555;
  margin: 0;
  font-size: 0.75rem;
}
.btn--innerglow{
  position: relative;
  /* исходная внутренняя тень (если была — можно оставить) */
  box-shadow:
    -4px -2px 15.6px 2px rgba(207,58,9,0.62) inset;
  animation: inner-glow 2.8s ease-in-out infinite;
  will-change: box-shadow;
}

/* чуть активнее/быстрее на hover */
.btn--innerglow:hover{
  animation-duration: 1.8s;
}

/* если нужно тише на нажатие */
.btn--innerglow:active{
  animation-duration: 1.2s;
}

/* сама анимация */
@keyframes inner-glow{
  0%,100%{
    box-shadow:
      -4px -2px 14px 1px rgba(237,67,0,0.35) inset,
      inset 0 0 0 0 rgba(237,67,0,0);                 /* легкое свечение */
  }
  50%{
    box-shadow:
      -4px -2px 22px 6px rgba(237,67,0,0.72) inset,   /* ярче и шире */
      inset 0 0 22px 4px rgba(237,67,0,0.22);         /* мягкое внутреннее свечение */
  }
}

/* уважение к настройкам доступности */
@media (prefers-reduced-motion: reduce){
  .btn--innerglow{ animation: none; }
}


