@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Chivo:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #030014;
  color: white;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  /* Добавляем фон в виде клеточек */
  /* background-image: linear-gradient(rgba(60, 60, 120, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 60, 120, 0.15) 1px, transparent 1px); */
  background-size: 50px 50px;
  background-position: center center;
  font-family: "Inter", sans-serif;

}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

.background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/light.webp');
  background-position: center top;
  background-repeat: no-repeat;
  /*background-size: 100% auto;*/
  opacity: 0.8;
  z-index: -2;
}

.background-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 777vh;
  /* Высота, через которую будет происходить затемнение */
  background: linear-gradient(rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 70%,
      rgba(0, 0, 0, 1) 100%);
  pointer-events: none;
  z-index: -1;
}

a {
  text-decoration: none;
}

.stars {
  position: absolute;
  width: 400px;
  /* или 300px, как хочешь */
  height: 400px;
  background-image:
    radial-gradient(white, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
    radial-gradient(white, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px;
  background-position: 0 0, 15px 15px;
  background-repeat: repeat;
  opacity: 0.3;
  top: 100px;
  /* отступ сверху */
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  /* чтобы не мешала кликам */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 !important;
  position: relative;
  margin-bottom: 100px !important;
}

nav {
  display: none;
}

.main-nav {
  list-style: none;
  background: rgba(46, 46, 61, 0.8);
  backdrop-filter: blur(4px);
  padding: 7px 10px;
  border-radius: 16px;
  display: flex;
}

.main-nav li {
  padding: 8px 15px;
  border-radius: 10px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.main-nav li:hover {
  background: rgba(201, 201, 201, 0.21);
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.main-nav li:hover a {
  opacity: 1;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.right-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-selector {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(46, 46, 61, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 17px 15px;
  cursor: pointer;
  font-size: 14px;
  gap: 5px;
  color: white;
  user-select: none;
  z-index: 10000;
}

.language-selector:focus,
.language-selector:focus-visible {
  background: rgba(46, 46, 61, 0.8);
  outline: none;
}


.globe-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 2px;
  transition: transform 0.3s ease;
}

.language-selector.active .dropdown-arrow {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: rgba(46, 46, 61, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10001;
}

.language-selector.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.language-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.language-option.active {
  background: rgba(255, 255, 255, 0.15);
  font-weight: 500;
}

.start-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: black;
  border: none;
  border-radius: 16px;
  padding: 10px 16px 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.button-text {
  display: inline-block;
}

.arrow-container {
  width: 32px;
  height: 32px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  box-shadow: inset 0px 1px 2.4000000953674316px 0px rgba(255, 255, 255, 0.25), inset 0px -4px 5.099999904632568px 0px rgba(255, 255, 255, 0.45), inset 0px -4px 22.399999618530273px 0px rgba(255, 255, 255, 0.65);
  background: linear-gradient(125.28deg, rgba(131.2, 125, 218, 1) 0.3%, rgba(77.85, 46.64, 190.7, 1) 42.123%, rgba(37, 0, 148, 1) 104.858%);
  transition: transform 0.3s ease;
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.arrow {
  font-size: 16px;
  margin-left: 5px;
}

.hero {
  background-image: url(/assets/img/hero_bg.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 50px;
  position: relative;
  overflow: hidden;
  margin-bottom: 90px;
  height: 760px;
}

/* Альтернативный вариант с более заметной границей */
.ai-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(3px);
  padding: 7.5px 14.5px;
  font-size: 18px;
  margin-bottom: 30px;
  gap: 5px;
  color: white;

  /* Более светлая и заметная граница */
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 0 0 0.5px rgba(255, 255, 255, 0.15),
    0 0 10px rgba(0, 0, 0, 0.1);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
  will-change: transform;

  border-radius: 14px;
  background: linear-gradient(125.28deg, rgba(15.5, 17.29, 51.32, 0.2) 0.3%, rgba(0, 0, 0, 0.2) 54.147%, rgba(216.65, 204.47, 253.17, 0.2) 104.858%), linear-gradient(127.87deg, rgba(255, 255, 255, 0) 2.118%, rgba(255, 255, 255, 0.2) 55.306%, rgba(255, 255, 255, 0) 99.71%);
}

/* Дополнительное свечение для подчеркивания границы */
.ai-badge::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: transparent;
  box-shadow: 0 0 8px 1px rgba(255, 255, 255, 0.2);
  /* Увеличена яркость свечения */
  pointer-events: none;
  z-index: -1;
}


.ai-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, #a89aff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 50px;
  line-height: 1.5;
}

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.features .feature:first-child {
  gap: 0;
}

.feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cta-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}

.chart-graphic {
  position: absolute;
  width: 600px;
  height: 400px;
  /* background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Group%201-w68h6g94awxf6pXrS57BwurfoYypt5.webp'); */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  z-index: -1;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  position: absolute;
  bottom: 5%;
  right: 43%;
  display: flex;
  align-items: center;
  gap: 10px;

  span {
    color: linear-gradient(90.00deg, rgba(255, 255, 255, 1), rgba(153, 153, 153, 1) 100%);
    background-clip: text;
    font-family: Inter;
    font-style: Medium;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: -3%;
    text-align: center;
  }
}

.scroll-arrow {
  animation: bounce 2s infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.btn {
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 16px;

  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

button.btn.btn-outline {
  border: 1px solid white;
}

/* Hamburger menu styles */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  cursor: pointer;
  z-index: 100;
  position: relative;
  padding: 4px;
  transition: transform 0.3s ease;
}

.hamburger-menu:hover {
  transform: scale(1.1);
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #ffffff 0%, #a89aff 100%);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hamburger-menu.active span {
  background: linear-gradient(90deg, #ff6b6b 0%, #ffa502 100%);
}

/* Mobile navigation styles */
.mobile-nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.98) 0%, rgba(20, 15, 40, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s ease;
  overflow: hidden;
}

.mobile-nav-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(78, 47, 191, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.mobile-nav-container.active {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  color: white;
  padding: 0;
  margin: 0;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.mobile-nav-close:active {
  transform: rotate(90deg) scale(0.95);
}

.mobile-nav-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: stroke 0.3s ease;
}

.mobile-nav-close:hover svg {
  stroke: #a89aff;
}

.mobile-nav {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.mobile-nav li {
  margin: 12px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-nav-container.active .mobile-nav li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-container.active .mobile-nav li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav-container.active .mobile-nav li:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-nav-container.active .mobile-nav li:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-nav-container.active .mobile-nav li:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-nav-container.active .mobile-nav li:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  opacity: 0.9;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  padding: 16px 30px;
  border-radius: 12px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, #a89aff 0%, #8B5CF6 100%);
  border-radius: 0 4px 4px 0;
  transition: transform 0.3s ease;
}

.mobile-nav a:hover {
  opacity: 1;
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.mobile-nav a:hover::before {
  transform: translateY(-50%) scaleX(1);
}

.mobile-nav a:active {
  transform: translateX(8px) scale(0.98);
}

/* Hamburger menu animation */
.hamburger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
}

/* How it works section */
.how-it-works {
  position: relative;
  width: 100%;
  min-height: 1095px;
  background-image: url(/assets/img/HowOurBotWorks.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: white;
  text-align: center;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 60px;
}

.how-it-works-title {
  color: rgba(214, 221, 230, 1);
  font-family: Inter, sans-serif;
  font-style: normal;
  font-size: 40px;
  font-weight: 500;
  line-height: 55px;
  letter-spacing: -0.07em;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 70px;
  margin: 0;
}

.how-it-works-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  padding-bottom: 50px;
  flex-direction: row;
}

.how-it-works-card {
  background-image: url(/assets/img/HowOurBotWorksCard.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15.9px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.how-it-works-card--large {
  width: 387px;
  height: 489.47px;
}

.how-it-works-card--small {
  width: 332px;
  height: 419.91px;
}


.how-it-works-card.reveal.active::before {
  content: '';
  position: absolute;
  background-image: url(/assets/img/HowOurBotWorksCardBorder.png);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15.9px;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}

.card-text {
  margin-top: auto;
}

.card-title {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;

  color: rgba(255, 255, 255, 1);
  font-family: Inter;
  font-weight: 500;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.card-description {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
  margin-top: 10px;
  text-align: left;
  margin-bottom: 0;

  color: rgba(193, 193, 193, 1);

  font-family: Inter;
  font-size: 16.83px;
  font-weight: 400;
}

.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 150px;
}

.card-image img {
  max-width: 100%;
  object-fit: none;
}

.card-labels {
  position: absolute;
  width: 100%;
  height: 100%;
}

.card-label {
  position: absolute;
  font-size: 14px;
  color: white;
  background: rgba(101, 101, 101, 0.23);
  border: 1px solid rgb(255 255 255 / 15%);
  backdrop-filter: blur(8.83px);
  padding: 16px;
  border-radius: 12.27px;

  backdrop-filter: blur(8.833773612976074px);
}

.card-label--impulse {
  top: 215px;
  left: 85px;
  font-size: 21px;
}

.card-label--flat {
  top: 140px;
  right: -5px;
  font-size: 21px;
}

.card-label--correction {
  top: 50px;
  left: 150px;

  font-size: 21px;
  color: rgba(255, 255, 255, 1);
  font-family: Inter;
  font-weight: 500;
}

.buy-sell-buttons {
  display: flex;
  gap: 38px;
  position: absolute;
  top: 150px;
}

.buy-button,
.sell-button {
  flex: 1;
  padding: 27px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 125px;

}

.buy-button {
  background:
    linear-gradient(116.62deg, rgba(126, 41, 255, 0.23) 5.91%, rgba(0, 0, 0, 0) 94.58%),
    radial-gradient(65.43% 26.86% at 49.98% 0%, #B49AFF 0%, rgba(108, 55, 255, 0) 100%),
    radial-gradient(14.91% 12.02% at 49.98% 0%, #B49AFF 0%, rgba(108, 55, 255, 0) 100%);
  border: 0.68px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  color: white;
  padding: 20px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}


.sell-button {
  background:
    linear-gradient(116.62deg, rgba(0, 0, 0, 0.23) 5.91%, rgba(0, 0, 0, 0) 94.58%),
    radial-gradient(65.43% 26.86% at 49.98% 0%, #B49AFF 0%, rgba(108, 55, 255, 0) 100%),
    radial-gradient(14.91% 12.02% at 49.98% 0%, #B49AFF 0%, rgba(108, 55, 255, 0) 100%);
  border: 0.68px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  color: white;
  padding: 20px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Feature section styles */
.feature__section {
  padding-top: 0;
  padding-bottom: 140px;
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.feature__section.section-visible {
  opacity: 1;
  transform: translateY(0);
}

.sticks-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* чтобы не мешали нажимать по карточке */
}

.stick {
  position: absolute;
  width: 47px;
  /* теперь ширина — длина палочки */
  height: 47px;
  /* а высота — толщина */
  border-radius: 1px;
}

.feature__heading {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.bck {
  background-color: #47328f;
  height: 180px;
}

.bth__market__anal,
.bth__signals__al {
  position: absolute;
  background: linear-gradient(93.15deg, #837DDA 0.3%, #4E2FBF 42.12%, #250094 104.86%);
  border-top: 1.47px solid rgba(214, 221, 230, 0.2);
  box-shadow:
    1.96px 19.64px 20.63px rgba(0, 0, 0, 0.06),
    4.91px 45.18px 27.5px rgba(0, 0, 0, 0.04),
    9.82px 80.54px 32.41px rgba(0, 0, 0, 0.01),
    14.73px 125.71px 35.36px rgba(0, 0, 0, 0),
    0px -4px 22.4px rgba(255, 255, 255, 0.65) inset,
    0px -4px 5.1px rgba(255, 255, 255, 0.45) inset,
    0px 1px 2.4px rgba(255, 255, 255, 0.25) inset;
  border-radius: 20px;
  padding: 18px;
  z-index: 1100;

  display: flex;
  gap: 10px;
  align-items: flex-end;
  width: max-content;
}

.features__buy__sell span {
  font-size: 15px;
  color: gray;
}


.bth__market__anal button,
.bth__signals__al button {
  background: transparent;
  border: none;
  color: white;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.feature__card.first .bth__market__anal {
  left: 60%;
  top: 20%;
}

.feature__card.first .bth__signals__al {
  right: 65%;
  bottom: 32%;
}

.feature__card.second .bth__market__anal {
  left: 60%;
  top: 30%;
}

.feature__card.second .bth__signals__al {
  right: 60%;
  bottom: 45%;
}

/* Grid layout */
.feature__grid {
  display: flex;
  flex-direction: column;
  gap: 23.5px;
  position: relative;
}

.feature__grid::after {
  content: '';
  position: absolute;
  bottom: -47.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Row wrapper for cards */
.feature__row {
  display: flex;
  gap: 23.5px;
  align-items: flex-start;
}

/* Card styles */
.feature__card {
  background-color: #0d0a1d;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.feature__card.first {
  width: 825px;
  height: 430px;
}

.feature__card.second {
  width: 471.43px;
  height: 430px;
}

.feature__card.third {
  width: 564px;
  height: 430px;
}

.feature__card.fourth {
  width: 732px;
  height: 430px;
}

.feature__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(139, 124, 255, 0.2);
}

.feature__content {
  flex: 1;
  z-index: 2;
  margin-bottom: 32px;
}

.feature__title {
  /* font-size: 18px; */
  font-weight: 600;
  text-align: left;
  margin-bottom: 8px;

  color: rgba(214, 221, 230, 1);

  font-family: Inter;
  font-size: 27.5px;
}

.feature__description {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 100%;
}

.feature__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}

.feature__card.fourth .feature__visual:last-child {
  background-image: url(/assets/img/feature_accuracy.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
}

/* Chart wrapper for centering */
.feature__chart-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Real-time signals card */
.feature__chart-container {
  position: relative;
  background: linear-gradient(151.57deg, #5623ff -17.56%, rgba(0, 0, 0, 0) 99.59%);
  background-blend-mode: screen;
  border-top: 1.47px solid rgba(214, 221, 230, 0.2);
  box-shadow:
    0.98px 4.91px 10.8px rgba(0, 0, 0, 0.08),
    1.96px 19.64px 20.63px rgba(0, 0, 0, 0.06),
    4.91px 45.18px 27.5px rgba(0, 0, 0, 0.04),
    9.82px 80.54px 32.41px rgba(0, 0, 0, 0.01),
    14.73px 125.71px 35.36px rgba(0, 0, 0, 0),
    inset 0px -4px 22.4px rgba(255, 255, 255, 0.65),
    inset 0px -4px 5.1px rgba(255, 255, 255, 0.45),
    inset 0px 1px 2.4px rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 24px;
  width: 340px;
  height: 396.79px;
  backdrop-filter: blur(12px);
  margin: 0 auto;
}

.feature__chart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.features__buy__sell {
  display: flex;
  gap: 8px;
}

.features__buy,
.features__sell {
  color: white;
  background: transparent;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 8px;
  font-size: 15px;
  transition: background-color 0.2s ease;
  margin: 0;
}

.dfxbot {
  background: rgba(214, 221, 230, 0.2);
  color: white;
  border-radius: 20px;
  padding: 5px 10px;
  border: none;
  outline: none;
  font-size: 15px;
  transition: background-color 0.2s ease;
}

.feature__chart__content {
  background-color: rgb(11, 6, 29);
  border-radius: 15px;
  overflow: hidden;
  bottom: -55px;
  position: relative;
  margin-top: -37px;
  height: 100%;
}

.features__chart__graph {
  position: relative;
  width: 100%;
}

.base-image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  margin-top: -17px;
  margin-left: 4px;
}

/* Advanced analytics card */
.feature__analytics-container {
  position: relative;
  min-height: 120px;
  padding: 10px;
  width: 100%;
}


/* 24/7 Support card */
.feature__support-button {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  padding: 18px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  margin: 20px auto 60px auto;
  background: linear-gradient(93.15deg, #837DDA 0.3%, #4E2FBF 42.12%, #250094 104.86%);
  background-blend-mode: luminosity;
  border-top: 1.3px solid rgba(214, 221, 230, 0.2);
  box-shadow:
    1.3px 6.48px 14.25px rgba(0, 0, 0, 0.08),
    2.59px 25.91px 27.21px rgba(0, 0, 0, 0.06),
    6.48px 59.6px 36.28px rgba(0, 0, 0, 0.04),
    12.96px 106.25px 42.76px rgba(0, 0, 0, 0.01),
    19.44px 165.85px 46.64px rgba(0, 0, 0, 0),
    inset 0px -4px 22.4px rgba(255, 255, 255, 0.65),
    inset 0px -4px 5.1px rgba(255, 255, 255, 0.45),
    inset 0px 1px 2.4px rgba(255, 255, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  position: relative;
  overflow: hidden;
}

.feature__support-text {
  color: rgba(214, 221, 230, 1);
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  line-height: 39.29px;
  transition: color 0.3s ease;
}

.feature__support-button:hover {
  background: linear-gradient(93.15deg, #9A94E8 0.3%, #5E3FCF 42.12%, #3510A4 104.86%);
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    2px 8px 18px rgba(131, 125, 218, 0.3),
    3px 30px 32px rgba(0, 0, 0, 0.1),
    8px 65px 40px rgba(0, 0, 0, 0.06),
    15px 115px 48px rgba(0, 0, 0, 0.02),
    22px 175px 52px rgba(0, 0, 0, 0),
    inset 0px -4px 22.4px rgba(255, 255, 255, 0.75),
    inset 0px -4px 5.1px rgba(255, 255, 255, 0.55),
    inset 0px 1px 2.4px rgba(255, 255, 255, 0.35);
  border-top: 1.3px solid rgba(214, 221, 230, 0.3);
}

.feature__support-button:hover .feature__support-text {
  color: rgba(255, 255, 255, 1);
}

.feature__support-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    1px 4px 10px rgba(131, 125, 218, 0.2),
    1.5px 15px 20px rgba(0, 0, 0, 0.08),
    4px 35px 25px rgba(0, 0, 0, 0.05),
    8px 60px 30px rgba(0, 0, 0, 0.02),
    12px 90px 35px rgba(0, 0, 0, 0),
    inset 0px -2px 15px rgba(255, 255, 255, 0.5),
    inset 0px -2px 3px rgba(255, 255, 255, 0.3),
    inset 0px 1px 2px rgba(255, 255, 255, 0.2);
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* High accuracy card */
.feature__accuracy-container {

  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

/* END FETURESS */


.bth__market__anal svg {
  position: relative;
  top: 2px;
}

.bth__signals__al svg {
  position: relative;
  top: 4px;
}

.feature__support-icon svg {
  position: relative;
  top: 2px;
}

.section__statistic-card-value svg {
  font-size: 15px;
}


/* Reviews Section Styles */
.section__reviews {
  padding-top: 0;
  padding-bottom: 60px;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  margin-top: -700px;
  align-items: center;
  position: relative;

  display: none;
}

.section__reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section__reviews-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  z-index: 9999;
}

.section__reviews-heading {
  color: #ffffff;
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

/* Swiper контейнер */
.section__reviews-swiper {
  width: 100%;
  padding: 25px 0 60px;
  overflow: visible;
}

.section__reviews-grid.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

/* Swiper слайд */
.section__reviews-card.swiper-slide {
  position: relative;
  width: 280px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transform-origin: center center;
  cursor: pointer;
  border-radius: 9.59px;
  background: rgba(30, 30, 30, 1);
  opacity: 0.3 !important;
  box-sizing: border-box;
  height: auto;
}

/* Dimming overlay for inactive cards - smoother transition */
.section__reviews-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Remove dimming for active card with animation */
.section__reviews-card--active::before {
  opacity: 0;
  transform: scale(1.1);
}

/* Hover effect to partially remove dimming - but NOT for active card */
.section__reviews-card:not(.section__reviews-card--active):hover::before {
  opacity: 0.3;
}

/* Modify hover effect to exclude active card */
.section__reviews-card:not(.section__reviews-card--active):hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  background: rgba(40, 40, 50, 0.3);
}

.section__reviews-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.section__reviews-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  background: rgba(40, 40, 50, 0.3);
}

.section__reviews-card:hover::after {
  transform: translateY(0);
}

/* Enhance active card animation */
.section__reviews-card.swiper-slide.section__reviews-card--active,
.section__reviews-card--active.swiper-slide {
  transform: scale(1.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(21.6px);
  /* Prevent hover effects on active card */
  pointer-events: auto;
  z-index: 10;
  opacity: 1 !important;

  box-sizing: border-box;
  border-radius: 11px;
  background: rgba(101, 101, 101, 0.23);
}

/* Add focus indicator for active card */
.section__reviews-card--active::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  border-radius: 3px;
  z-index: 10;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
    width: 30px;
  }

  50% {
    opacity: 1;
    width: 40px;
  }

  100% {
    opacity: 0.4;
    width: 30px;
  }
}

/* Content dimming for inactive cards */
.section__reviews-content {
  flex-grow: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 3;
  /* Above the dimming overlay */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section__reviews-card:not(.section__reviews-card--active) .section__reviews-content {
  opacity: 0.6;
  transform: translateY(5px);
}

.section__reviews-card--active .section__reviews-content {
  transform: translateY(0);
  opacity: 1;
}

.section__reviews-card:not(.section__reviews-card--active):hover .section__reviews-content {
  opacity: 0.8;
  transform: translateY(2px);
}

.section__reviews-content::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -5px;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.1);
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.section__reviews-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
  /* Prevent text from being too small on mobile */
  min-height: 1em;
  /* Improve text readability */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhance author transitions */
.section__reviews-author {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-top: 15px;
  z-index: 3;
  /* Above the dimming overlay */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section__reviews-card:not(.section__reviews-card--active) .section__reviews-author {
  opacity: 0.6;
  transform: translateY(5px);
}

.section__reviews-card--active .section__reviews-author {
  transform: translateY(0);
  opacity: 1;
}

.section__reviews-card:not(.section__reviews-card--active):hover .section__reviews-author {
  opacity: 0.8;
  transform: translateY(2px);
}

.section__reviews-author::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.section__reviews-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #333;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  /* Prevent avatar from shrinking on small screens */
}

.section__reviews-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.section__reviews-info {
  display: flex;
  flex-direction: column;
  /* Prevent text overflow */
  overflow: hidden;
}

.section__reviews-name {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* Prevent text overflow */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section__reviews-position {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 2px;
  /* Prevent text overflow */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Add progress indicator for the review carousel */
/* Пагинация Swiper */
.section__reviews-pagination {
  position: absolute;
  bottom: 20px;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  width: auto !important;
}

.section__reviews-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 1;
  margin: 0 4px !important;
}

.section__reviews-pagination-bullet--active {
  background: rgba(255, 255, 255, 0.8);
  width: 20px;
  border-radius: 4px;
}


.section__statistic {
  position: relative;
  width: 100%;
  min-height: 1300px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  z-index: 0;

  margin: 0 auto;
  padding: 20px 20px 80px 20px;

  background-color: #05000E;
  background-image: url(/assets/img/back_stat.png);
  background-size: 70% 100%;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section__statistic-container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}


.section__statistic-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;

  margin: 0 auto;
  padding-top: 20px;
}

.section__statistic-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 40px;
  max-width: 500px;
}

.section__statistic-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: white;
  color: #865EFF;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 3rem;
}

.section__statistic-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(134, 94, 255, 0.3);
}

.section__statistic-button-icon {
  transition: transform 0.2s ease;
}

.section__statistic-button:hover .section__statistic-button-icon {
  transform: translateX(2px);
}

.section__statistic-cards {
  width: 100%;
  height: 100%;
}

.section__statistic-card {
  padding: 1.5rem;
  color: white;
  transition: all 0.3s ease;
  position: absolute;

  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(21.600000381469727px);
  background: rgba(101, 101, 101, 0.23);
  opacity: 0;
}

/* Позиционирование для карточки пользователей */
.section__statistic-card--users {
  top: 20%;
  left: 30%;
  width: 280px;
}

/* Позиционирование для карточки прибыли */
.section__statistic-card--profit {
  top: 25%;
  right: 30%;
  width: 280px;
}

/* Позиционирование для карточки точности */
.section__statistic-card--accuracy {
  left: 30%;
  transform: translateX(-50%);
  width: 280px;
}

/* Анимации запускаются только когда контейнер виден */
.section__statistic-cards.cards-visible .section__statistic-card--users {
  animation: slideInFromLeft 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s forwards;
}

.section__statistic-cards.cards-visible .section__statistic-card--profit {
  animation: slideInFromRight 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s forwards;
}

.section__statistic-cards.cards-visible .section__statistic-card--accuracy {
  animation: slideInFromBottom 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.6s forwards;
}

.section__statistic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(134, 94, 255, 0.2);
  border-color: rgba(134, 94, 255, 0.3);
}

.section__statistic-card--accuracy:hover {
  transform: translateX(-50%) translateY(-5px);
}

/* Анимации вылета из сторон для карточек статистики */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(100px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(0%) translateY(0) scale(1);
  }
}

.section__statistic-card-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  text-align: left;
}

.section__statistic-card-value {
  font-size: 2.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section__statistic-card-icon {
  margin-top: 0.5rem;
}

.section__statistic-card-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  text-align: left;
}

.section__statistic-card-progress {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  margin-top: 1rem;
  overflow: hidden;
}

.section__statistic-card-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 96%;
  border-radius: 6px;
  background: linear-gradient(90.00deg, rgba(133.72, 94.03, 255, 1) 14.969%, rgba(153, 119.62, 255, 1) 100%), linear-gradient(90.00deg, rgba(72.92, 109.34, 255, 0) 59.259%, rgba(255, 48.08, 48.08, 0.28) 83.478%, rgba(255, 255, 255, 1) 100.309%);
}

.section__statistic-card-progress-glow {
  position: absolute;
  top: 0;
  right: 4%;
  height: 100%;
  width: 10px;
  background: white;
  border-radius: 3px;
  filter: blur(3px);
  opacity: 0.8;
}

/* Адаптивность для section__statistic */
@media (max-width: 1400px) {
  .section__statistic {
    min-height: 1200px;
    padding: 20px 15px 60px 15px;
  }

  .section__statistic-card--users {
    left: 20%;
  }

  .section__statistic-card--profit {
    right: 20%;
  }
}

@media (max-width: 1200px) {
  .section__statistic {
    min-height: auto;
    padding: 20px 15px 40px 15px;
    background-size: 100% auto;
  }

  .section__statistic-content {
    padding-top: 15px;
    margin-bottom: 20px;
  }

  .section__statistic-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .section__statistic-cards {
    position: relative;
    min-height: 600px;
  }

  .section__statistic-card {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px auto;
  }

  .section__statistic-card--users {
    top: auto;
    left: auto;
    right: auto;
  }

  .section__statistic-card--profit {
    top: auto;
    left: auto;
    right: auto;
  }

  .section__statistic-card--accuracy {
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin-bottom: 0;
  }

  .section__statistic-card--accuracy:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .section__statistic {
    min-height: auto;
    padding: 20px 10px 30px 10px;
    background-size: cover;
  }

  .section__statistic-container {
    padding: 2rem 0.5rem;
  }

  .section__statistic-content {
    padding-top: 10px;
    margin-bottom: 40px;
  }

  .section__statistic-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
    max-width: 100%;
  }

  .section__statistic-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }

  .section__statistic-cards {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .section__statistic-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 1.25rem;
  }

  .section__statistic-card-label {
    font-size: 0.875rem;
  }

  .section__statistic-card-value {
    font-size: 2rem;
  }

  .section__statistic-card-note {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .section__statistic {
    padding: 15px 10px 20px 10px;
  }

  .section__statistic-container {
    padding: 1.5rem 0.5rem;
  }

  .section__statistic-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .section__statistic-button {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
  }

  .section__statistic-card {
    padding: 1rem;
    border-radius: 20px;

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

  .section__statistic-card-label {
    font-size: 0.8125rem;
    margin-bottom: 0.375rem;
  }

  .section__statistic-card-value {
    font-size: 1.75rem;
  }

  .section__statistic-card-note {
    font-size: 0.6875rem;
  }

  .section__statistic-card-progress {
    height: 5px;
    margin-top: 0.75rem;
  }
}

/* Section Styles */
.section__footer {
  background-color: transparent;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section__footer.section-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer__container {
  max-width: 1200px;
  margin: 10px auto;
  position: relative;
  z-index: 2;
}

.footer__contact-info svg {
  font-size: 20px;
}

/* Background gradients */
.section__footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(183.35deg, rgba(0, 0, 0, 0) 32.22%, rgba(9, 4, 26, 0.95) 75.42%);*/
  z-index: 0;
}

.section__footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* CTA Box */
.footer__cta-box {
  padding: 40px 30px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;

  border-radius: 27px;
  box-shadow: inset 0px 1px 2.4000000953674316px 0px rgba(255, 255, 255, 0.25), inset 0px 10px 30.299999237060547px 0px rgba(95, 49, 253, 0.47), inset 0px -4px 22.399999618530273px 0px rgba(255, 255, 255, 0.65);
  background: radial-gradient(24.00% 28.00% at 50% 0%, rgba(125.13, 84.17, 255, 0.94), rgba(125, 84, 255, 0))
    /* Предупреждение: градиент использует вращение, не поддерживаемое CSS, и может работать не так, как ожидается. */
    , linear-gradient(125.28deg, rgba(131.2, 125, 218, 1) 0.3%, rgba(77.85, 46.64, 190.7, 1) 42.123%, rgba(37, 0, 148, 1) 104.858%), linear-gradient(180.00deg, rgba(0, 0, 0, 0) 32.218%, rgba(9.01, 3.68, 26.26, 0.95) 75.416%);
}

.footer__title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 24px;
}

/* Buttons */
.footer__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  color: black;
  align-items: center;
}

.footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 17.49px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 250px;
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.footer__button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.footer__button--primary {
  background-color: #ffffff;
  color: black;
}

.footer__button--primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.footer__button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.footer__button--secondary:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.6);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* Contact Info */
.footer__contact-info {
  display: none;
  /* display: flex; */
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 300;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;

  span {
    color: rgba(255, 255, 255, 1);
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  svg {
    transition: all 0.3s ease;
    transform-origin: center;
  }

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
  }

  &:hover {
    transform: translateY(-2px);
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.05);

    span {
      color: rgba(255, 255, 255, 1);
      transform: translateX(2px);
    }

    svg {
      transform: scale(1.1) rotate(5deg);
      filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    }

    &::before {
      left: 100%;
    }
  }

  &:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
  }
}

.footer__icon {
  width: 16px;
  height: 16px;
}


/* Reset for this section only */
.section__accardeon * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Section Styles */
.section__accardeon {
  background-color: transparent;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  color: #ffffff;
  padding-top: 0;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.accardeon__container {
  max-width: 650px;
  margin: 0 auto;
}

.accardeon__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* Accordion Items */
.accardeon__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accardeon__item {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: inset 0px 1px 2.4000000953674316px 0px rgba(255, 255, 255, 0.25), inset 0px -4px 5.099999904632568px 0px rgba(255, 255, 255, 0.45), inset 0px -4px 22.399999618530273px 0px rgba(255, 255, 255, 0.65);
  background: linear-gradient(125.28deg, rgba(131.2, 125, 218, 1) 0.3%, rgba(77.85, 46.64, 190.7, 1) 42.123%, rgba(37, 0, 148, 1) 104.858%), rgba(108, 108, 108, 1);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.accardeon__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

.accardeon__item:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0px 1px 2.4000000953674316px 0px rgba(255, 255, 255, 0.35),
    inset 0px -4px 5.099999904632568px 0px rgba(255, 255, 255, 0.55),
    inset 0px -4px 22.399999618530273px 0px rgba(255, 255, 255, 0.75),
    0px 8px 24px rgba(131, 125, 218, 0.3);
  background: linear-gradient(125.28deg, rgba(141.2, 135, 228, 1) 0.3%, rgba(87.85, 56.64, 200.7, 1) 42.123%, rgba(47, 10, 158, 1) 104.858%), rgba(118, 118, 118, 1);
}

.accardeon__item:hover::before {
  left: 100%;
}

.accardeon__item:active {
  transform: translateY(0);
  transition: transform 0.1s ease;
}

/* Accordion Header */
.accardeon__header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  z-index: 1;
}

.accardeon__item:hover .accardeon__header {
  padding-left: 28px;
}

.accardeon__icon {
  font-size: 20px;
  font-weight: 700;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.accardeon__item:hover .accardeon__icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

.accardeon__item.active:hover .accardeon__icon {
  transform: rotate(0deg) scale(1.1);
}

.accardeon__question {
  font-size: 16px;
  font-weight: 500;
  flex: 1;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.accardeon__item:hover .accardeon__question {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Accordion Content */
.accardeon__content {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.accardeon__content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 14px;
  padding-bottom: 24px;
  text-align: left;
}

/* Active State */
.accardeon__item.active {
  box-shadow:
    inset 0px 1px 2.4000000953674316px 0px rgba(255, 255, 255, 0.35),
    inset 0px -4px 5.099999904632568px 0px rgba(255, 255, 255, 0.55),
    inset 0px -4px 22.399999618530273px 0px rgba(255, 255, 255, 0.75),
    0px 4px 16px rgba(131, 125, 218, 0.2);
}

.accardeon__item.active .accardeon__content {
  display: block;
  max-height: 500px;
  opacity: 1;
  padding: 0 24px;
}

.accardeon__item.active .accardeon__icon {
  transform: rotate(0deg);
}

.accardeon__item.active:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0px 1px 2.4000000953674316px 0px rgba(255, 255, 255, 0.4),
    inset 0px -4px 5.099999904632568px 0px rgba(255, 255, 255, 0.6),
    inset 0px -4px 22.399999618530273px 0px rgba(255, 255, 255, 0.8),
    0px 8px 24px rgba(131, 125, 218, 0.4);
}

/* Wrapper for sections with star background */
.sections-wrapper {
  position: relative;
}

/* Star Background between sections */
.section__star-bg {
  position: absolute;
  right: 0;
  top: 35%;
  transform: translateY(-40%);
  width: auto;
  height: auto;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
}

.section__star-bg-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* Section Styles */
.section__howToStart {
  background-color: transparent;
  color: #ffffff;
  padding-top: 0;
  padding-bottom: 300px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: visible;
}

.section__howToStart::after {
  content: '';
  position: absolute;
  top: 0;
  left: calc((100vw - 100%) / -2);
  width: 100vw;
  height: 100%;
  background-image: url(/assets/img/stars.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
}

.section__howToStart::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/assets/img/HowToStart.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.section__howToStart .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section__subtitle {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 8px;

  color: rgba(165, 148, 253, 1);

  font-family: Inter;
  font-weight: 400;

  position: relative;
}

.section__diamond {
  color: #6C5DD3;
  font-size: 14px;
}

/* Steps Container */
.steps__container {
  display: flex;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 100;
}

/* Step Card */
.step__card {
  width: 385px;
  height: 413px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);

  box-sizing: border-box;
  border-radius: 20px;
  backdrop-filter: blur(21.600000381469727px);
  background: radial-gradient(59.00% 47.00% at 50% 0%, rgba(73.16, 20.36, 237.59, 0.2), rgba(73.16, 20.36, 237.59, 0))
    /* Предупреждение: градиент использует вращение, не поддерживаемое CSS, и может работать не так, как ожидается. */
    , rgba(101, 101, 101, 0.23);
}

.step__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step__dots {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 5px;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  box-shadow: none;
  background-color: rgba(108, 93, 211, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Первая карточка (Step 1) - закрашена только первая точка */
.step__card:nth-child(1) .dot:nth-child(1) {
  box-shadow: 0px 0px 9px 0px rgba(63, 30, 175, 1);
  background: linear-gradient(125.28deg, rgba(131, 125, 218, 1) 0.3%, rgba(78, 47, 191, 1) 42.123%, rgba(37, 0, 148, 1) 104.858%);
}

.step__card:nth-child(1) .dot:nth-child(2),
.step__card:nth-child(1) .dot:nth-child(3) {
  box-shadow: none;
  background-color: rgba(108, 93, 211, 0.3);
}

/* Вторая карточка (Step 2) - закрашены первые две точки */
.step__card:nth-child(2) .dot:nth-child(1),
.step__card:nth-child(2) .dot:nth-child(2) {
  box-shadow: 0px 0px 9px 0px rgba(63, 30, 175, 1);
  background: linear-gradient(125.28deg, rgba(131, 125, 218, 1) 0.3%, rgba(78, 47, 191, 1) 42.123%, rgba(37, 0, 148, 1) 104.858%);
}

.step__card:nth-child(2) .dot:nth-child(3) {
  box-shadow: none;
  background-color: rgba(108, 93, 211, 0.3);
}

/* Третья карточка (Step 3) - закрашены все три точки */
.step__card:nth-child(3) .dot {
  box-shadow: 0px 0px 9px 0px rgba(63, 30, 175, 1);
  background: linear-gradient(125.28deg, rgba(131, 125, 218, 1) 0.3%, rgba(78, 47, 191, 1) 42.123%, rgba(37, 0, 148, 1) 104.858%);
}

.step__icon {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.step__description {
  font-size: 14px;
  color: #8A8A8A;
  line-height: 1.6;
  text-align: center;
}

/* Responsive Styles */

.step__icon svg {
  font-size: 108px;
}


button.start-button.pc.header {
  padding: 8px 12px;
}

button.btn.btn-outline.pc.header {
  padding: 14px 23px;
}

/* ======= ANIMATION STYLESHEET ======= */
/* This file adds animations to desktop views while disabling them on mobile */


/* Device detection script will add this class to body when on mobile */
/* ======= HEADER ANIMATIONS ======= */



/* Navigation hover effect */
.main-nav a {
  position: relative;
  overflow: hidden;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: white;
  transition: width 0.3s ease;
}

.main-nav li:hover a::after {
  width: 100%;
}

/* Start button animation */
@keyframes pulseButton {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

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

.start-button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.start-button .arrow-container {
  transition: transform 0.3s ease;
}


/* ======= HERO SECTION ANIMATIONS ======= */
/* AI badge glow effect */
@keyframes glowEffect {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
}

.ai-badge {
  animation: glowEffect 4s infinite ease-in-out;
}

/* Main title animation */
@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-title {
  animation: titleReveal 1s ease-out forwards;
}

/* Subtitle fade in */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.subtitle {
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

/* Feature icons animation */
@keyframes featureIconPop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  70% {
    transform: scale(1.1);
  }

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

.feature {
  opacity: 0;
  animation: featureIconPop 0.5s ease-out forwards;
}

.feature:nth-child(1) {
  animation-delay: 0.7s;
}

.feature:nth-child(2) {
  animation-delay: 0.9s;
}

.feature:nth-child(3) {
  animation-delay: 1.1s;
}

.feature:nth-child(4) {
  animation-delay: 1.3s;
}

/* Background stars animation */
@keyframes starsTwinkle {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.5;
  }
}

.stars {
  animation: starsTwinkle 4s infinite ease-in-out;
}

/* ======= FEATURE SECTION ANIMATIONS ======= */
/* Card hover animations */
.feature__card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
}

.feature__card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(139, 124, 255, 0.3);
}

/* Chart animation */
@keyframes chartGrow {
  0% {
    transform: scaleY(0);
  }

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

.features__chart__graph {
  transform-origin: bottom;
  animation: chartGrow 1.5s ease-out forwards;
}

/* ======= REVIEWS SECTION ANIMATIONS ======= */
/* Review card entrance animation */
@keyframes reviewCardEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section__reviews-card {
  animation: reviewCardEntrance 0.8s ease-out forwards;
  opacity: 0;
}

.section__reviews-card:nth-child(1) {
  animation-delay: 0.1s;
}

.section__reviews-card:nth-child(2) {
  animation-delay: 0.3s;
}

.section__reviews-card:nth-child(3) {
  animation-delay: 0.5s;
}

.section__reviews-card:nth-child(4) {
  animation-delay: 0.7s;
}

.section__reviews-card:nth-child(5) {
  animation-delay: 0.9s;
}

/* Enhanced hover effect for review cards */
.section__reviews-card::before {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ======= STATISTICS SECTION ANIMATIONS ======= */
/* Counter animation for statistics */
@keyframes countUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section__statistic-card-value {
  animation: countUp 1s ease-out forwards;
  opacity: 0;
}

/* Progress bar animation */
@keyframes progressGrow {
  0% {
    width: 0;
  }

  100% {
    width: 96%;
  }
}

.section__statistic-card-progress-bar {
  width: 0;
  animation: progressGrow 1.5s ease-out forwards;
  animation-delay: 0.5s;
}



/* ======= FOOTER ANIMATIONS ======= */
/* CTA box hover animation */
.footer__cta-box {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.footer__cta-box:hover {
  transform: translateY(-5px);
}

.dropdown-arrow svg {
  font-size: 17px;
  margin-top: 2px;
}

/* ============================================
   CRYPTO TICKER SECTION
   ============================================ */
.crypto-ticker {
  width: 100%;
  background: linear-gradient(180deg, rgba(78, 47, 191, 0.1) 0%, transparent 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 60px;
}

.crypto-ticker__wrapper {
  overflow: hidden;
  width: 100%;
}

.crypto-ticker__track {
  display: flex;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.crypto-ticker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  white-space: nowrap;
}

.crypto-ticker__icon {
  font-size: 24px;
  color: #f7931a;
}

.crypto-ticker__item:nth-child(2) .crypto-ticker__icon,
.crypto-ticker__item:nth-child(8) .crypto-ticker__icon {
  color: #627eea;
}

.crypto-ticker__item:nth-child(3) .crypto-ticker__icon,
.crypto-ticker__item:nth-child(9) .crypto-ticker__icon {
  color: #00ffa3;
}

.crypto-ticker__item:nth-child(4) .crypto-ticker__icon,
.crypto-ticker__item:nth-child(10) .crypto-ticker__icon {
  color: #f3ba2f;
}

.crypto-ticker__name {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}

.crypto-ticker__price {
  font-weight: 500;
  font-size: 14px;
  color: #bcbcbc;
}

.crypto-ticker__change {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.crypto-ticker__change--up {
  color: #00ff85;
  background: rgba(0, 255, 133, 0.1);
}

.crypto-ticker__change--down {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

/* ============================================
   LIVE SIGNALS SECTION
   ============================================ */
.live-signals {
  padding-top: 0;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.live-signals.section-visible {
  opacity: 1;
  transform: translateY(0);
}

.live-signals__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.live-signals__header {
  margin-bottom: 40px;
}

.live-signals__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 59, 48, 0.15);
  border: 1px solid rgba(255, 59, 48, 0.3);
  color: #ff3b30;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.live-signals__dot {
  width: 8px;
  height: 8px;
  background: #ff3b30;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.live-signals__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #a89aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.live-signals__subtitle {
  font-size: 18px;
  color: #7d7d7d;
}

.live-signals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

/* Signal Preview Card */
.signal-preview-card {
  background: linear-gradient(145deg, rgba(20, 20, 30, 0.9), rgba(10, 10, 20, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.signal-preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff85, #00cc6a);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.signal-preview-card--sell::before {
  background: linear-gradient(90deg, #ff6b6b, #ee5a5a);
}

.signal-preview-card:hover {
  transform: translateY(-10px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(139, 92, 246, 0.1);
}

.signal-preview-card:hover::before {
  opacity: 1;
}

.signal-preview-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.signal-preview-card__pair {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
}

.signal-preview-card__icon {
  font-size: 24px;
  color: #f7931a;
}

.signal-preview-card:nth-child(2) .signal-preview-card__icon {
  color: #627eea;
}

.signal-preview-card:nth-child(3) .signal-preview-card__icon {
  color: #00ffa3;
}

.signal-preview-card__type {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.signal-preview-card__type--buy {
  background: rgba(0, 255, 133, 0.15);
  color: #00ff85;
  border: 1px solid rgba(0, 255, 133, 0.3);
}

.signal-preview-card__type--sell {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.signal-preview-card__chart {
  height: 60px;
  margin-bottom: 20px;
}

.signal-preview-card__svg {
  width: 100%;
  height: 100%;
}

.signal-preview-card__line {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-preview-card__line--buy {
  stroke: #00ff85;
  filter: drop-shadow(0 0 8px rgba(0, 255, 133, 0.5));
  animation: chartDraw 2s ease-out forwards;
}

.signal-preview-card__line--sell {
  stroke: #ff6b6b;
  filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.5));
  animation: chartDraw 2s ease-out forwards;
}

@keyframes chartDraw {
  from {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.signal-preview-card__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.signal-preview-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #7d7d7d;
}

.signal-preview-card__value {
  color: #ffffff;
  font-weight: 600;
}

.signal-preview-card__value--green {
  color: #00ff85;
}

.signal-preview-card__value--red {
  color: #ff6b6b;
}

.signal-preview-card__progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.signal-preview-card__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00ff85, #00cc6a);
  border-radius: 2px;
  animation: progressFill 1.5s ease-out forwards;
}

.signal-preview-card__progress-bar--sell {
  background: linear-gradient(90deg, #ff6b6b, #ee5a5a);
}

@keyframes progressFill {
  from {
    width: 0 !important;
  }
}

.live-signals__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4E2FBF, #8B5CF6);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.live-signals__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

/* ============================================
   MARKET ANALYSIS SECTION
   ============================================ */
.market-analysis {
  padding-top: 0;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.market-analysis.section-visible {
  opacity: 1;
  transform: translateY(0);
}

.market-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
}

.market-analysis__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #a89aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.market-analysis__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Market Widget */
.market-widget {
  background: linear-gradient(145deg, rgba(20, 20, 30, 0.9), rgba(10, 10, 20, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.market-widget:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.market-widget__title {
  font-size: 14px;
  color: #7d7d7d;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.market-widget__value {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.market-widget__subtitle {
  font-size: 14px;
  color: #7d7d7d;
}

.market-widget__change {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  margin-bottom: 20px;
}

.market-widget__change--up {
  color: #00ff85;
}

.market-widget__change--down {
  color: #ff6b6b;
}

/* Gauge (Fear & Greed) */
.market-widget__gauge {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.gauge {
  width: 140px;
  height: 70px;
  position: relative;
}

.gauge__body {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gauge__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background: conic-gradient(from 0.75turn,
      #ff6b6b 0%,
      #ffa502 25%,
      #ffd93d 50%,
      #00ff85 75%);
  border-radius: 50%;
  transform-origin: center center;
}

.gauge__cover {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: rgba(10, 10, 20, 0.95);
  border-radius: 50% 50% 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 5px;
}

.gauge__value {
  font-size: 28px;
  font-weight: 700;
  color: #ffd93d;
}

.gauge__label {
  font-size: 12px;
  color: #7d7d7d;
  text-transform: uppercase;
}

.market-widget__scale {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #7d7d7d;
}

/* Volume Bars */
.market-widget__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  margin-top: 20px;
}

.volume-bar {
  flex: 1;
  background: rgba(139, 92, 246, 0.3);
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
}

.volume-bar--active {
  background: linear-gradient(180deg, #8B5CF6, #4E2FBF);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.market-widget:hover .volume-bar {
  animation: barPulse 0.5s ease-out forwards;
}

@keyframes barPulse {

  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(1.1);
  }
}

/* Dominance Chart */
.dominance-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.dominance-chart__ring {
  position: relative;
  width: 120px;
  height: 120px;
}

.dominance-chart__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.dominance-chart__ring circle {
  fill: none;
  stroke-width: 12;
}

.dominance-chart__bg {
  stroke: rgba(255, 255, 255, 0.05);
}

.dominance-chart__btc {
  stroke: #f7931a;
}

.dominance-chart__eth {
  stroke: #627eea;
}

.dominance-chart__other {
  stroke: #8B5CF6;
}

.dominance-chart__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.dominance-chart__percent {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #f7931a;
}

.dominance-chart__label {
  font-size: 12px;
  color: #7d7d7d;
}

.dominance-chart__legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.dominance-chart__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #bcbcbc;
}

.dominance-chart__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dominance-chart__dot--btc {
  background: #f7931a;
}

.dominance-chart__dot--eth {
  background: #627eea;
}

.dominance-chart__dot--other {
  background: #8B5CF6;
}

/* Active Traders */
.traders-avatars {
  display: flex;
  margin-top: 20px;
}

.traders-avatars__item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-left: -10px;
  border: 2px solid rgba(10, 10, 20, 0.95);
  transition: transform 0.3s ease;
}

.traders-avatars__item:first-child {
  margin-left: 0;
}

.traders-avatars__item:hover {
  transform: scale(1.1);
  z-index: 10;
}

.traders-avatars__item--more {
  background: rgba(139, 92, 246, 0.3);
  font-size: 11px;
}

.traders-avatars__item--gradient-1 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.traders-avatars__item--gradient-2 {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.traders-avatars__item--gradient-3 {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.traders-avatars__item--gradient-4 {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.market-widget__pulse {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: #00ff85;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 133, 0.4);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(0, 255, 133, 0);
  }
}


/* ============================================
   ENHANCED VISUAL EFFECTS & ANIMATIONS
   Обновленные визуальные эффекты для "живого" интерфейса
   ============================================ */

/* === ГЛОБАЛЬНЫЕ АНИМАЦИИ === */

/* Плавное пульсирующее свечение */
@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.6;
    filter: blur(40px);
  }

  50% {
    opacity: 1;
    filter: blur(60px);
  }
}

/* Медленное вращение */
@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Плавающее движение */
@keyframes float {

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

  25% {
    transform: translateY(-20px) translateX(10px);
  }

  50% {
    transform: translateY(-10px) translateX(-5px);
  }

  75% {
    transform: translateY(-30px) translateX(5px);
  }
}

/* Мерцание звезд */
@keyframes twinkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Появление снизу */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

/* Появление с масштабированием */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Градиентное движение */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Эффект дыхания */
@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Волновое движение */
@keyframes wave {

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

  25% {
    transform: translateX(5px) translateY(-5px);
  }

  50% {
    transform: translateX(0) translateY(-10px);
  }

  75% {
    transform: translateX(-5px) translateY(-5px);
  }
}

/* Эффект сияния */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Орбитальное движение */
@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(100px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(100px) rotate(-360deg);
  }
}

/* === ФОНОВЫЕ ЭФФЕКТЫ === */

/* Плавающие частицы */
/* === УЛУЧШЕННЫЕ HOVER-ЭФФЕКТЫ === */

/* Кнопки с эффектом свечения */
.start-button {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.start-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.start-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.start-button:hover::before {
  left: 100%;
}

.start-button:hover .arrow-container {
  transform: translateX(4px);
}

.start-button:active {
  transform: translateY(-1px) scale(0.98);
}

@keyframes pulseButton {

  0%,
  100% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  50% {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 8px rgba(255, 255, 255, 0);
  }
}

.start-button {
  animation: pulseButton 2s ease-in-out infinite;
}

/* Кнопка outline с анимацией границы */
.btn-outline {
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  z-index: 1;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, #4E2FBF, #8B5CF6, #4E2FBF);
  background-size: 200% 100%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-outline:hover::before {
  opacity: 1;
  animation: gradientShift 2s ease infinite;
}

.btn-outline:hover {
  border-color: transparent;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

/* Карточки "How it works" с улучшенным hover */
.how-it-works-card {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.how-it-works-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(139, 92, 246, 0.15);
}

/* Feature карточки с эффектом свечения */
.feature__card {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}


.feature__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Карточки отзывов с улучшенным hover */
.section__reviews-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section__reviews-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(139, 92, 246, 0.1);
}

/* === AI BADGE С АНИМАЦИЕЙ === */
.ai-badge {
  animation: fadeInUp 0.8s ease-out, breathe 4s ease-in-out infinite 1s;
}

.ai-badge::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 21px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.5), rgba(78, 47, 191, 0.5), rgba(139, 92, 246, 0.5));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-badge:hover::before {
  opacity: 1;
}

/* === MAIN TITLE С ЭФФЕКТОМ ГРАДИЕНТА === */
.main-title {
  animation: fadeInUp 1s ease-out 0.2s backwards;
  background: linear-gradient(135deg, #ffffff 0%, #a89aff 50%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeInUp 1s ease-out 0.2s backwards, gradientShift 8s ease infinite;
}

/* === SUBTITLE АНИМАЦИЯ === */
.subtitle {
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* === FEATURES АНИМАЦИЯ === */
.features {
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.feature {
  transition: all 0.3s ease;
}


/* === CTA BUTTONS АНИМАЦИЯ === */
.cta-buttons {
  animation: fadeInUp 1s ease-out 0.8s backwards;
}

/* === STOCK TICKERS С АНИМАЦИЕЙ === */

/* === SCROLL INDICATOR АНИМАЦИЯ === */
.scroll-indicator {
  animation: fadeInUp 1s ease-out 1s backwards;
}

/* === SECTION TITLES С АНИМАЦИЕЙ === */
.how-it-works-title,
.feature__heading,
.section__statistic-title,
.section__reviews-heading,
.section__title {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

/* === УЛУЧШЕННЫЙ PROGRESS BAR === */
.section__statistic-card-progress-bar {
  background: linear-gradient(90deg, #4E2FBF, #8B5CF6, #4E2FBF);
  background-size: 200% 100%;
  animation: progressGrow 1.5s ease-out forwards, gradientShift 3s ease infinite;
  animation-delay: 0.5s, 1.5s;
}

.section__statistic-card-progress-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* === СТАТИСТИЧЕСКИЕ КАРТОЧКИ === */
.section__statistic-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section__statistic-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* === STEP КАРТОЧКИ === */
.step__item {
  transition: all 0.4s ease;
}

.step__item:hover {
  transform: translateY(-10px);
}

.step__item:hover .step__icon {
  animation: wave 1.5s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

/* === НАВИГАЦИЯ С ЭФФЕКТАМИ === */
.main-nav a {
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4E2FBF, #8B5CF6);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav li:hover a::after {
  width: 100%;
}

.main-nav li:hover a {
  color: #a89aff;
}

/* === LANGUAGE SELECTOR С АНИМАЦИЕЙ === */
.language-selector {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


/* === FAQ ITEMS === */
.faq__item {
  transition: all 0.3s ease;
}

.faq__item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* === FOOTER LINKS === */
.footer__link {
  transition: all 0.3s ease;
}

.footer__link:hover {
  color: #a89aff;
  transform: translateX(5px);
}

/* === SCROLL REVEAL CLASSES === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* === КУРСОР ЭФФЕКТ (опционально) === */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* === НОВЫЙ ФУТЕР === */
.footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 1);
  font-family: Inter, sans-serif;
}

.footer__info {
  display: flex;
  flex-direction: row;
  gap: 0;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__partner {
  color: rgba(255, 255, 255, 1);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.footer__partner-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer__partner-link:hover {
  color: #a89aff;
  text-decoration: underline;
}

.footer__logo-img {
  width: 189.91px;
  height: 38.22px;
  object-fit: contain;
}

.footer__address {
  opacity: 0.44;
  color: rgba(255, 255, 255, 1);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.footer__text {
  opacity: 0.44;
  color: rgba(255, 255, 255, 1);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 8px;
  transition: opacity 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

a.footer__text:hover {
  opacity: 1;
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

.footer__disclaimer {
  margin-top: 0;
}

.footer__disclaimer-text {
  color: rgba(255, 255, 255, 1);
  font-family: Inter, sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 300;
  line-height: 19px;
  letter-spacing: 0.23em;
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.44;
}

/* === ТЕКСТОВОЕ СВЕЧЕНИЕ === */

/* ============================================
   АДАПТИВНЫЕ СТИЛИ (начиная с 300px)
   ============================================ */

/* Reviews Section */
@media (max-width: 1200px) {
  .section__reviews {
    margin-top: -500px;
  }

  .section__reviews-card {
    flex: 0 0 260px;
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .section__reviews {
    padding-top: 0;
    padding-bottom: 40px;
    margin-top: -300px;
    min-height: 50vh;
  }

  .section__reviews-container {
    padding: 0 10px;
    margin-top: 40px;
  }

  .section__reviews-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .section__reviews-swiper {
    padding: 25px 0 50px;
  }

  .section__reviews-card {
    width: 240px;
    min-height: 240px;
    padding: 20px;
  }

  .section__reviews-content {
    margin-bottom: 20px;
  }

  .section__reviews-content p {
    font-size: 14px;
  }

  .section__reviews-avatar {
    width: 40px;
    height: 40px;
  }

  .section__reviews-name {
    font-size: 12px;
  }

  .section__reviews-position {
    font-size: 11px;
  }

  .section__reviews-pagination {
    bottom: 10px;
    gap: 6px;
  }

  .section__reviews-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .section__reviews-pagination-bullet--active {
    width: 16px;
  }
}

@media (max-width: 480px) {
  .section__reviews {
    padding-top: 0;
    padding-bottom: 30px;
    margin-top: -200px;
  }

  .section__reviews-container {
    padding: 0 8px;
    margin-top: 40px;
  }

  .section__reviews-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .section__reviews-swiper {
    padding: 25px 0 45px;
  }

  .section__reviews-card {
    width: 220px;
    min-height: 220px;
    padding: 16px;
  }

  .section__reviews-content {
    margin-bottom: 16px;
  }

  .section__reviews-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .section__reviews-author {
    gap: 10px;
    padding-top: 12px;
  }

  .section__reviews-avatar {
    width: 36px;
    height: 36px;
  }

  .section__reviews-name {
    font-size: 11px;
  }

  .section__reviews-position {
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .section__reviews-heading {
    font-size: 22px;
  }

  .section__reviews-card {
    flex: 0 0 200px;
    min-height: 200px;
    padding: 14px;
  }

  .section__reviews-content p {
    font-size: 12px;
  }

  .section__reviews-avatar {
    width: 32px;
    height: 32px;
  }
}

/* Crypto Ticker */
@media (max-width: 768px) {
  .crypto-ticker {
    padding-top: 0;
    padding-bottom: 12px;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .crypto-ticker__item {
    padding: 0 30px;
    gap: 8px;
  }

  .crypto-ticker__icon {
    font-size: 20px;
  }

  .crypto-ticker__name {
    font-size: 12px;
  }

  .crypto-ticker__price {
    font-size: 12px;
  }

  .crypto-ticker__change {
    font-size: 11px;
    padding: 3px 6px;
  }
}

@media (max-width: 480px) {
  .crypto-ticker {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .crypto-ticker__item {
    padding: 0 20px;
    gap: 6px;
  }

  .crypto-ticker__icon {
    font-size: 18px;
  }

  .crypto-ticker__name {
    font-size: 11px;
  }

  .crypto-ticker__price {
    font-size: 11px;
  }

  .crypto-ticker__change {
    font-size: 10px;
    padding: 2px 5px;
  }
}

@media (max-width: 360px) {
  .crypto-ticker__item {
    padding: 0 15px;
  }
}

/* Live Signals Section */
@media (max-width: 1200px) {
  .live-signals__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .live-signals {
    padding-top: 0;
    padding-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .live-signals__title {
    font-size: 32px;
  }

  .live-signals__subtitle {
    font-size: 16px;
  }

  .live-signals__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .signal-preview-card {
    padding: 20px;
  }

  .signal-preview-card__chart {
    height: 50px;
    margin-bottom: 16px;
  }

  .live-signals__cta {
    padding: 14px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .live-signals {
    padding-top: 0;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .live-signals__title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .live-signals__subtitle {
    font-size: 14px;
  }

  .live-signals__badge {
    padding: 6px 12px;
    font-size: 11px;
  }

  .signal-preview-card {
    padding: 16px;
  }

  .signal-preview-card__header {
    font-size: 16px;
  }

  .signal-preview-card__icon {
    font-size: 20px;
  }

  .signal-preview-card__type {
    padding: 5px 12px;
    font-size: 11px;
  }

  .signal-preview-card__chart {
    height: 45px;
    margin-bottom: 14px;
  }

  .signal-preview-card__row {
    font-size: 12px;
  }

  .signal-preview-card__info {
    gap: 10px;
    margin-bottom: 16px;
  }

  .live-signals__cta {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .live-signals__title {
    font-size: 24px;
  }

  .signal-preview-card {
    padding: 14px;
  }
}

/* Market Analysis Section */
@media (max-width: 1200px) {
  .market-analysis__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .market-analysis {
    padding-top: 0;
    padding-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .market-analysis__title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .market-analysis__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .market-widget {
    padding: 20px;
  }

  .market-widget__value {
    font-size: 28px;
  }

  .gauge {
    width: 130px;
    height: 65px;
  }

  .gauge__value {
    font-size: 26px;
  }

  .gauge__label {
    font-size: 11px;
  }

  .market-widget__bars {
    height: 70px;
    gap: 7px;
  }

  .market-widget__scale {
    font-size: 9px;
  }

  .dominance-chart {
    gap: 18px;
  }

  .dominance-chart__ring {
    width: 140px;
    height: 140px;
  }

  .dominance-chart__percent {
    font-size: 22px;
  }

  .dominance-chart__label {
    font-size: 13px;
  }

  .dominance-chart__legend {
    gap: 14px;
  }

  .dominance-chart__item {
    font-size: 13px;
  }

  .traders-avatars__item {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .market-analysis {
    padding-top: 0;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .market-analysis__title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .market-widget {
    padding: 16px;
    border-radius: 16px;
  }

  .market-widget__title {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .market-widget__value {
    font-size: 24px;
  }

  .market-widget__change {
    font-size: 12px;
  }

  .gauge {
    width: 120px;
    height: 60px;
  }

  .gauge__value {
    font-size: 24px;
  }

  .gauge__label {
    font-size: 11px;
  }

  .market-widget__bars {
    height: 60px;
    gap: 6px;
  }

  .market-widget__scale {
    font-size: 9px;
  }

  .dominance-chart__ring {
    width: 120px;
    height: 120px;
  }

  .dominance-chart__percent {
    font-size: 20px;
  }

  .dominance-chart__label {
    font-size: 12px;
  }

  .dominance-chart__item {
    font-size: 12px;
  }

  .traders-avatars__item {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .dominance-chart {
    gap: 16px;
  }

  .dominance-chart__legend {
    gap: 12px;
  }

  .dominance-chart__item {
    font-size: 11px;
  }

  .dominance-chart__dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 360px) {
  .market-analysis__title {
    font-size: 24px;
  }

  .market-widget {
    padding: 14px;
  }

  .market-widget__value {
    font-size: 20px;
  }

  .gauge {
    width: 100px;
    height: 50px;
  }

  .gauge__value {
    font-size: 20px;
  }

  .gauge__label {
    font-size: 10px;
  }

  .market-widget__bars {
    height: 50px;
    gap: 4px;
  }

  .dominance-chart__ring {
    width: 100px;
    height: 100px;
  }

  .dominance-chart__percent {
    font-size: 18px;
  }
}

/* How To Start Section */
@media (max-width: 1200px) {
  .steps__container {
    gap: 20px;
  }

  .step__card {
    width: 320px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .section__howToStart::before {
    display: none;
  }

  .section__howToStart {
    padding: 50px 15px 60px 15px;
  }

  .section__title {
    font-size: 32px;
  }

  .steps__container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .step__card {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .section__howToStart {
    padding-top: 0;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .section__title {
    font-size: 28px;
  }

  .section__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .section__diamond img {
    width: 16px;
    height: 16px;
  }

  .step__card {
    padding: 24px;
    min-height: 250px;
    max-width: 250px;
  }

  .step__icon img {
    max-width: 80px;
    height: auto;
  }

  .step__title {
    font-size: 16px;
  }

  .step__dots {
    top: 15px;
    left: 15px;
  }

  .dot {
    width: 11px;
    height: 11px;
  }
}

@media (max-width: 360px) {
  .section__howToStart {
    padding: 30px 8px 60px 8px;
  }

  .footer__contact-info {
    flex-direction: column;
    align-items: center;
  }

  .section__title {
    font-size: 24px;
  }

  .section__subtitle {
    font-size: 13px;
  }

  .step__card {
    padding: 20px;
    min-height: 210px;
  }

  .step__title {
    font-size: 15px;
  }

  .step__icon img {
    max-width: 70px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .feature__card.first .bth__market__anal {
    left: 40%;
    top: 20%;
  }

  .feature__card.first .bth__signals__al {
    right: 48%;
    bottom: 32%;
  }

  .feature__chart-container {
    width: 240px;
    height: 396.79px;
  }
}

/* Accordion Section */
@media (max-width: 768px) {
  .section__accardeon {
    padding: 50px 15px;
  }

  .accardeon__title {
    font-size: 32px;
  }

  .accardeon__question {
    font-size: 16px;
  }

  .accardeon__content {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section__accardeon {
    padding-top: 0;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .accardeon__title {
    font-size: 28px;
  }

  .accardeon__item {
    padding: 16px;
  }

  .accardeon__header {
    padding: 12px 0;
  }

  .accardeon__question {
    font-size: 15px;
  }

  .accardeon__icon {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  .accardeon__content {
    font-size: 13px;
    padding-top: 12px;
  }
}

@media (max-width: 360px) {
  .accardeon__title {
    font-size: 24px;
  }

  .accardeon__question {
    font-size: 14px;
  }

  .accardeon__content {
    font-size: 12px;
  }
}

/* Footer Section */
@media (max-width: 768px) {
  .section__footer {
    margin-bottom: 40px;
  }

  .footer__cta-box {
    padding: 30px 20px;
  }

  .footer__title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .footer__buttons {
    gap: 10px;
    margin-bottom: 20px;
  }

  .footer__button {
    max-width: 220px;
    height: 55px;
    font-size: 15px;
  }

  .footer__contact-info {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .section__footer {
    margin-bottom: 30px;
  }

  .footer__cta-box {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .footer__title {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .footer__button {
    max-width: 100%;
    height: 50px;
    font-size: 14px;
  }

  .footer__contact-item {
    padding: 6px 10px;
    font-size: 13px;
  }

  .footer__contact-item img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 360px) {
  .footer__title {
    font-size: 24px;
  }

  .footer__button {
    height: 48px;
    font-size: 13px;
  }
}

/* Footer (нижний) */
@media (max-width: 768px) {
  .footer {
    padding: 30px 15px;
  }

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

  .footer__logo {
    text-align: center;
    align-items: center;
  }

  .footer__partner {
    font-size: 13px;
  }

  .footer__address {
    font-size: 13px;
  }

  .footer__text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 24px 10px;
  }

  .footer__info {
    gap: 16px;
  }

  .footer__logo-img {
    width: 120px;
    height: auto;
  }

  .footer__partner {
    font-size: 12px;
  }

  .footer__address {
    font-size: 12px;
    margin-top: 8px;
  }

  .footer__text {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .footer__disclaimer-text {
    font-size: 11px;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  .footer__logo-img {
    width: 100px;
  }

  .footer__partner {
    font-size: 11px;
  }

  .footer__address {
    font-size: 11px;
  }

  .footer__text {
    font-size: 12px;
  }

  .footer__disclaimer-text {
    font-size: 10px;
  }
}

/* Star Background */
@media (max-width: 768px) {
  .section__star-bg {
    display: none;
  }
}

/* Sections Wrapper */
@media (max-width: 768px) {
  .sections-wrapper {
    position: relative;
  }
}

/* Container адаптивность */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 360px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Scroll Indicator адаптивность */
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 10%;
    right: 50%;
    transform: translateX(50%);
    gap: 8px;
  }

  .scroll-indicator span {
    font-size: 14px;
  }

  .scroll-arrow img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .scroll-indicator {
    bottom: 2%;
    gap: 6px;
  }

  .scroll-indicator span {
    font-size: 12px;
  }

  .scroll-arrow img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 360px) {
  .scroll-indicator span {
    font-size: 11px;
  }

  .scroll-arrow img {
    width: 16px;
    height: 16px;
  }
}

/* ============================================
   АДАПТИВНЫЕ СТИЛИ ДЛЯ HEADER, HERO, HOW-IT-WORKS, FEATURES
   ============================================ */

/* Header адаптивность */
@media (max-width: 1024px) {
  nav {
    display: none;
  }

  header {
    padding: 20px !important;
    margin-bottom: 50px !important;
  }

  .hamburger-menu {
    display: flex;
  }

  .how-it-works {
    margin-bottom: 60px;
  }

  .feature__card.second .bth__signals__al {
    right: 62%;
    bottom: 45%;
  }

  .feature__card.second .bth__market__anal {
    left: 44%;
    top: 15%;
  }
}

@media (min-width: 1025px) {
  nav {
    display: block;
  }

  .hamburger-menu {
    display: none;
  }
}

@media (max-width: 768px) {
  header {
    padding: 20px !important;
    margin-bottom: 50px !important;
  }

  .logo {
    font-size: 20px;
  }

  .right-nav {
    gap: 8px;
  }

  .language-selector {
    padding: 12px 12px;
    font-size: 12px;
  }

  .start-button.pc.header,
  .btn-outline.pc.header {
    display: none;
  }

  .feature__card.first,
  .feature__card.second,
  .feature__card.third,
  .feature__card.fourth {
    width: 100%;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px !important;
    margin-bottom: 40px !important;
  }

  .logo {
    font-size: 18px;
  }

  .language-selector {
    padding: 10px 10px;
    font-size: 11px;
    gap: 4px;
  }

  .globe-icon {
    width: 14px;
    height: 14px;
  }

  .globe-icon img {
    width: 14px;
    height: 14px;
  }

  .selected-language {
    font-size: 11px;
  }

  .dropdown-arrow img {
    width: 8px;
    height: 8px;
  }

  .feature__card.first,
  .feature__card.second,
  .feature__card.third,
  .feature__card.fourth {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .logo {
    font-size: 16px;
  }

  .language-selector {
    padding: 8px 8px;
  }
}

/* Hero адаптивность */
@media (max-width: 768px) {
  .hero {
    padding-top: 30px;
    margin-bottom: 60px;
    height: auto;
    min-height: 600px;
  }

  .main-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .ai-badge {
    padding: 6px 12px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .features {
    gap: 20px;
    margin-bottom: 40px;
  }

  .feature {
    gap: 8px;
  }

  .feature-icon {
    width: 26px;
    height: 26px;
  }

  .feature-icon img {
    width: 16px;
    height: 16px;
  }

  .feature span {
    font-size: 13px;
  }

  .cta-buttons {
    gap: 12px;
    margin-bottom: 40px;
  }

  .start-button {
    padding: 10px 14px 10px 18px;
    font-size: 13px;
  }

  .btn-outline {
    padding: 10px 18px;
    font-size: 13px;
  }

  .chart-graphic {
    width: 400px;
    height: 300px;
    top: 200px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 20px;
    margin-bottom: 50px;
    min-height: 600px;
  }

  .main-title {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .ai-badge {
    padding: 5px 10px;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .ai-icon img {
    width: 12px;
    height: 12px;
  }

  .features {
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .feature {
    gap: 6px;
  }

  .feature-icon {
    width: 24px;
    height: 24px;
  }

  .feature-icon img {
    width: 14px;
    height: 14px;
  }

  .feature span {
    font-size: 12px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .start-button {
    width: 100%;
    padding: 12px 16px 12px 20px;
    font-size: 14px;
    justify-content: center;
  }

  .btn-outline {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
  }

  .chart-graphic {
    width: 300px;
    height: 200px;
    top: 180px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-top: 15px;
    min-height: 500px;
  }

  .main-title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 13px;
  }

  .ai-badge {
    font-size: 12px;
    padding: 4px 8px;
  }

  .features {
    gap: 12px;
  }

  .feature span {
    font-size: 11px;
  }

  .chart-graphic {
    width: 250px;
    height: 150px;
    top: 150px;
  }
}

/* How It Works адаптивность */
@media (max-width: 1200px) {
  .how-it-works {
    min-height: auto;
    padding: 60px 20px;
  }

  .how-it-works-cards {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 40px 15px;
    border-radius: 20px;
    background-size: cover;
  }

  .how-it-works-title {
    font-size: 32px;
    line-height: 1.3;
    padding-top: 40px;
    padding-bottom: 60px;
    margin-bottom: 0;
  }

  .how-it-works-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .how-it-works-card--large {
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .how-it-works-card--small {
    width: 100%;
    height: auto;
    min-height: 350px;
  }

  .buy-sell-buttons {
    top: 120px;
    right: 190px;
  }

  .how-it-works-card.reveal.active::before {
    background-repeat: repeat;
  }

  .how-it-works {
    margin-bottom: 40px;
  }

  .card-label--correction {
    top: 20px;
    left: 330px;
  }

  .card-label--flat {
    top: 140px;
    right: 150px;
  }

  .card-label--impulse {
    top: 175px;
    left: 160px;
  }
}

@media (max-width: 480px) {
  .how-it-works {
    padding: 30px 10px;
    margin-bottom: 40px;
    border-radius: 16px;
  }

  .how-it-works-title {
    font-size: 28px;
    padding-top: 20px;
    padding-bottom: 40px;
    margin-bottom: 0;
  }

  .how-it-works-card--large {
    max-width: 100%;
    min-height: 350px;
  }

  .how-it-works-card--small {
    max-width: 100%;
    min-height: 300px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 14px;
  }

  .card-label--impulse {
    top: 160px;
    left: 80px;
    font-size: 18px;
  }

  .card-label--correction {
    top: 10px;
    left: 150px;
    font-size: 18px;
  }

  .card-label--flat {
    top: 100px;
    right: -5px;
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .how-it-works-title {
    font-size: 24px;
  }

  .how-it-works-card--large {
    min-height: 400px;
  }

  .how-it-works-card--small {
    min-height: 400px;
  }

  .card-label--impulse {
    top: 195px;
    left: 40px;
    font-size: 15px;
    padding: 10px;
  }

  .card-label--correction {
    top: 40px;
    left: 120px;
    font-size: 15px;
    padding: 10px;
  }

  .card-label--flat {
    top: 130px;
    right: -5px;
    font-size: 15px;
    padding: 10px;
  }

  .buy-sell-buttons {
    top: 140px;
    right: 0px;
  }

  .buy-button,
  .sell-button {
    padding: 20px;
    width: 110px;
  }
}

/* Feature Section адаптивность */
@media (max-width: 1200px) {
  .feature__section {
    padding-bottom: 100px;
  }

  .feature__grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .feature__section {
    padding-bottom: 80px;
  }

  .feature__heading {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .feature__grid {
    gap: 16px;
  }

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

  .feature__card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .feature__section {
    padding-bottom: 60px;
  }

  .feature__heading {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .feature__title {
    font-size: 18px;
  }

  .feature__description {
    font-size: 14px;
  }

  .feature__chart-container {
    transform: scale(0.9);
  }

  .buy-sell-buttons {
    top: 90px;
    right: 40px;
  }
}

@media (max-width: 375px) {
  .buy-sell-buttons {
    top: 80px;
    right: 0;
  }
}

@media (max-width: 360px) {
  .feature__heading {
    font-size: 24px;
  }

  .feature__title {
    font-size: 16px;
  }

  .feature__description {
    font-size: 13px;
  }

  .buy-sell-buttons {
    top: 130px;
    right: 0;
  }
}

/* Mobile Navigation адаптивность */
@media (max-width: 768px) {
  .mobile-nav li {
    margin: 12px 0;
  }

  .mobile-nav a {
    font-size: 20px;
    padding: 14px 25px;
  }

  .mobile-nav-close {
    top: 25px;
    right: 25px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .mobile-nav a {
    font-size: 18px;
    padding: 12px 20px;
  }

  .mobile-nav-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .mobile-nav-close svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .mobile-nav li {
    margin: 12px 0;
  }

  .mobile-nav a {
    font-size: 15px;
    padding: 10px 15px;
  }
}

@media (max-width: 360px) {
  .mobile-nav a {
    font-size: 14px;
    padding: 8px 12px;
  }

  .mobile-nav-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .mobile-nav-close svg {
    width: 18px;
    height: 18px;
  }
}

/* Дополнительные улучшения для модального окна */
.mobile-nav-container.active .mobile-nav-close {
  animation: fadeInScale 0.4s ease 0.2s backwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-90deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Пульсация для активного состояния hamburger */
.hamburger-menu.active {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 107, 0);
  }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(78, 47, 191, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0;
  margin: 0;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 1) 0%, rgba(78, 47, 191, 1) 100%);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.scroll-to-top:active {
  transform: translateY(-3px) scale(1.05);
  transition: transform 0.1s ease;
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

.scroll-to-top:active svg {
  transform: translateY(0);
}

/* Анимация пульсации */
.scroll-to-top.show::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(78, 47, 191, 0.3) 100%);
  z-index: -1;
  animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 0;
    transform: scale(1.3);
  }
}

/* Адаптивность для Scroll to Top */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .scroll-to-top svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 360px) {
  .scroll-to-top {
    bottom: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .scroll-to-top svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================
   ДОПОЛНИТЕЛЬНЫЕ АНИМАЦИИ И HOVER ЭФФЕКТЫ
   ============================================ */

/* Логотип с анимацией */
.logo {
  transition: all 0.3s ease;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #a89aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(168, 154, 255, 0.5));
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a89aff 0%, #8B5CF6 100%);
  transition: width 0.4s ease;
}

.logo:hover::after {
  width: 100%;
}

/* AI Badge улучшенные анимации */
.ai-badge {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: badgeFloat 3s ease-in-out infinite;
}

.ai-badge:hover {
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}


.ai-badge:hover .ai-icon img {
  filter: drop-shadow(0 0 8px rgba(168, 154, 255, 0.6));
}

@keyframes badgeFloat {

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

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

/* Features элементы с улучшенными hover */
.feature {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  padding: 8px 12px;
  border-radius: 12px;
}

.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(78, 47, 191, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.feature:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(139, 92, 246, 0.1);
}

.feature:hover::before {
  opacity: 1;
}

.feature:hover img {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
}

.feature span {
  transition: all 0.3s ease;
}

.feature:hover span {
  color: #a89aff;
  text-shadow: 0 0 10px rgba(168, 154, 255, 0.5);
}

/* Кнопка btn-outline улучшенные эффекты */
.btn-outline {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background: transparent;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(78, 47, 191, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-outline:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.6);
  background: rgba(139, 92, 246, 0.1);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  color: #a89aff;
}

.btn-outline:hover::before {
  left: 100%;
}

.btn-outline:hover::after {
  opacity: 1;
}

.btn-outline:active {
  transform: translateY(-1px);
}

/* How It Works карточки улучшенные анимации */
.how-it-works-card {
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.how-it-works-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.how-it-works-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(139, 92, 246, 0.2);
}

.how-it-works-card:hover::after {
  opacity: 1;
}

.how-it-works-card .card-image img {
  transition: all 0.4s ease;
}

.how-it-works-card:hover .card-image img {
  filter: brightness(1.1);
}

.how-it-works-card:hover .card-title {
  text-shadow: 0 0 10px rgba(168, 154, 255, 0.5);
}

/* Card Labels анимации */
.card-label {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: labelPulse 2s ease-in-out infinite;
}

.how-it-works-card:hover .card-label {
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

@keyframes labelPulse {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(139, 92, 246, 0.3);
  }

  50% {
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
  }
}

/* Feature карточки улучшенные анимации */
.feature__card {
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.feature__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(78, 47, 191, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(139, 92, 246, 0.2);
}

.feature__card:hover::before {
  opacity: 1;
}

.feature__card:hover .feature__title {
  color: #a89aff;
  text-shadow: 0 0 10px rgba(168, 154, 255, 0.5);
}

.feature__card:hover .bth__market__anal,
.feature__card:hover .bth__signals__al {
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
}

/* Заголовки с анимацией */
.main-title,
.how-it-works-title,
.feature__heading,
.section__title,
.market-analysis__title,
.live-signals__title {
  transition: all 0.3s ease;
  position: relative;
}

.main-title:hover,
.how-it-works-title:hover,
.feature__heading:hover,
.section__title:hover,
.market-analysis__title:hover,
.live-signals__title:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 15px rgba(168, 154, 255, 0.3));
}

/* Subtitle анимация */
.subtitle {
  transition: all 0.3s ease;
}

.subtitle:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Chart graphic анимация */
.chart-graphic {
  transition: all 0.5s ease;
  animation: chartFloat 4s ease-in-out infinite;
}

@keyframes chartFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
    opacity: 0.9;
  }
}

/* Scroll indicator анимация */



.scroll-indicator:hover .scroll-arrow img {
  transform: translateY(5px);
  animation: arrowBounce 0.6s ease-in-out infinite;
}



@keyframes arrowBounce {

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

  50% {
    transform: translateY(5px);
  }
}

/* Crypto ticker items анимации */
.crypto-ticker__item {
  transition: all 0.3s ease;
}

.crypto-ticker__item:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.crypto-ticker__item:hover .crypto-ticker__icon {
  transform: rotate(360deg) scale(1.2);
  filter: drop-shadow(0 0 8px rgba(247, 147, 26, 0.6));
}

.crypto-ticker__item:hover .crypto-ticker__price {
  color: #a89aff;
  text-shadow: 0 0 8px rgba(168, 154, 255, 0.5);
}

/* Signal preview cards улучшенные анимации */
.signal-preview-card {
  position: relative;
  overflow: hidden;
}

.signal-preview-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.signal-preview-card:hover::before {
  opacity: 1;
}

.signal-preview-card:hover .signal-preview-card__type {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 255, 133, 0.4);
}

.signal-preview-card--sell:hover .signal-preview-card__type {
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.signal-preview-card:hover .signal-preview-card__chart {
  transform: scale(1.05);
}

/* Market widget улучшенные анимации */
.market-widget {
  position: relative;
  overflow: hidden;
}

.market-widget::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.market-widget:hover::after {
  left: 100%;
}

.market-widget:hover .market-widget__value {
  transform: scale(1.1);
  color: #a89aff;
  text-shadow: 0 0 10px rgba(168, 154, 255, 0.5);
}

.market-widget__value {
  transition: all 0.3s ease;
  display: inline-block;
}

/* Gauge анимация */
.gauge {
  transition: all 0.4s ease;
}

.market-widget:hover .gauge {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(255, 217, 61, 0.4));
}

/* Dominance chart анимации */
.dominance-chart__ring {
  transition: all 0.4s ease;
}

.market-widget:hover .dominance-chart__ring {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

.dominance-chart__item {
  transition: all 0.3s ease;
}

.dominance-chart__item:hover {
  transform: translateX(5px);
  color: #a89aff;
}

.dominance-chart__item:hover .dominance-chart__dot {
  transform: scale(1.3);
  box-shadow: 0 0 10px currentColor;
}

/* Traders avatars анимации */
.traders-avatars__item {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.traders-avatars__item:hover {
  transform: scale(1.2) translateY(-5px);
  z-index: 10;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* Step cards улучшенные анимации */
.step__card {
  position: relative;
  overflow: hidden;
}

.step__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(78, 47, 191, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.step__card:hover::after {
  opacity: 1;
}

.step__card .step__icon img {
  transition: all 0.4s ease;
}

.step__card:hover .step__icon img {
  filter: drop-shadow(0 8px 20px rgba(139, 92, 246, 0.4));
}

.step__card:hover .step__title {
  color: #a89aff;
  text-shadow: 0 0 10px rgba(168, 154, 255, 0.5);
}

.step__dots {
  transition: all 0.3s ease;
}

.step__card:hover .step__dots {
  transform: scale(1.1);
}

/* Section subtitle анимация */
.section__subtitle {
  transition: all 0.3s ease;
}

.section__subtitle:hover {
  transform: translateY(-2px);
  color: rgba(168, 154, 255, 1);
}

.section__subtitle:hover .section__diamond img {
  transform: rotate(360deg) scale(1.2);
  filter: drop-shadow(0 0 8px rgba(108, 93, 211, 0.6));
}

.section__diamond img {
  transition: all 0.4s ease;
}

/* Reviews cards улучшенные анимации */
.section__reviews-card {
  position: relative;
  overflow: hidden;
}

.section__reviews-card::before {
  transition: all 0.4s ease;
}

.section__reviews-card:hover .section__reviews-name {
  color: #a89aff;
  text-shadow: 0 0 8px rgba(168, 154, 255, 0.5);
}

/* Live signals CTA улучшенные анимации */
.live-signals__cta {
  position: relative;
  overflow: hidden;
}

.live-signals__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.live-signals__cta:hover::before {
  left: 100%;
}

.live-signals__cta:hover img {
  transform: translateX(5px) rotate(5deg);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.live-signals__cta img {
  transition: all 0.3s ease;
}

/* Footer buttons улучшенные анимации */
.footer__button:hover::before {
  width: 300px;
  height: 300px;
}


/* Footer CTA box анимация */
.footer__cta-box {
  position: relative;
  overflow: hidden;
}

.footer__cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.footer__cta-box:hover::before {
  opacity: 1;
}

.footer__cta-box:hover {
  transform: translateY(-5px);
}

/* Language selector улучшенные анимации */
.language-selector {
  position: relative;
}

.language-selector:hover .globe-icon img {
  transform: rotate(360deg) scale(1.1);
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}

.globe-icon img {
  transition: all 0.4s ease;
}

/* Feature support button анимации */
.feature__support-button {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.feature__support-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature__support-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.feature__support-button:hover::before {
  left: 100%;
}

.feature__support-button:hover img {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.5));
}

.feature__support-button img {
  transition: all 0.3s ease;
}

/* Crypto ticker улучшенные анимации */
.crypto-ticker__change {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.crypto-ticker__change::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.crypto-ticker__item:hover .crypto-ticker__change {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 255, 133, 0.4);
}

.crypto-ticker__item:hover .crypto-ticker__change::before {
  left: 100%;
}

.crypto-ticker__change--down:hover {
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

/* Market widget pulse улучшенная анимация */
.market-widget__pulse {
  animation: pulseDot 2s ease-in-out infinite;
}

.market-widget:hover .market-widget__pulse {
  animation: pulseDot 1s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(0, 255, 133, 0.6);
}

/* Volume bars улучшенные анимации */
.volume-bar {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.market-widget:hover .volume-bar {
  animation: barPulse 0.8s ease-out forwards;
}

.market-widget:hover .volume-bar--active {
  animation: barPulseActive 1s ease-out infinite;
}

@keyframes barPulseActive {

  0%,
  100% {
    transform: scaleY(1);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
  }

  50% {
    transform: scaleY(1.15);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.8);
  }
}

/* Gauge улучшенные анимации */
.gauge__fill {
  transition: transform 0.5s ease;
}

.gauge__value {
  transition: all 0.3s ease;
}

.market-widget:hover .gauge__value {
  transform: scale(1.1);
  text-shadow: 0 0 10px currentColor;
}

/* Section reviews heading анимация */
.section__reviews-heading {
  transition: all 0.3s ease;
}

.section__reviews-heading:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Footer logo анимация */
.footer__logo-img {
  transition: all 0.4s ease;
}

.footer__logo:hover .footer__logo-img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
}

/* Footer address анимация */
.footer__address {
  transition: all 0.3s ease;
}

.footer__logo:hover .footer__address {
  color: #a89aff;
  transform: translateX(5px);
}

/* Общие улучшения для всех ссылок */
a:not(.mobile-nav a):not(.footer__text):not(.footer__contact-item) {
  transition: all 0.3s ease;
}

a:not(.mobile-nav a):not(.footer__text):not(.footer__contact-item):hover {
  filter: brightness(1.2);
}

/* Плавные переходы для всех интерактивных элементов */
button,
a,
.card-label,
.feature__card,
.how-it-works-card,
.market-widget,
.signal-preview-card {
  will-change: transform;
}

/* Улучшенная производительность анимаций */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Interface Section */
.interface-section {
  display: flex;
  position: relative;
  z-index: 10;
  overflow: visible;
  justify-content: space-between;

  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 100px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.interface-section.section-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Анимации появления секций при скролле */
.section-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.interface-section__header-container {
  position: relative;
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.interface-section__header {
  max-width: 350px;
  position: relative;
}


.interface-section__title {
  font-family: Inter;
  font-size: 60px;
  font-weight: 500;
  line-height: 55px;
  text-align: left;
  transition: all 0.3s ease;
  animation: fadeInScale 0.8s ease-out 0.4s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.interface-section__image {
  position: absolute;
  top: 0;
  left: 80%;
  object-fit: cover;
}

.interface-section__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
  z-index: 1;
  overflow: visible;
  max-width: 850px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.interface-section__controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.interface-section__control-group {
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(21.600000381469727px);
  background: rgba(101, 101, 101, 0.23);
  padding: 30px;
  height: 250px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
  position: relative;
  z-index: 1;
  isolation: isolate;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: fadeInScale 0.6s ease-out both;
}

.interface-section__control-group:nth-child(1) {
  animation-delay: 0.6s;
}

.interface-section__control-group:nth-child(2) {
  animation-delay: 0.7s;
}

.interface-section__control-group:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
  background: rgba(101, 101, 101, 0.3);
}

.interface-section__label {
  color: rgba(255, 255, 255, 1);
  font-family: Inter;
  font-size: 29.43px;
  font-weight: 500;
  line-height: 36px;
  text-align: left;
}

.interface-section__subtitle {
  color: rgba(255, 255, 255, 1);

  font-family: Inter;
  font-size: 26px;
  font-weight: 500;
  line-height: 36px;
}

.interface-section__subtitle--signal {
  color: rgba(255, 255, 255, 1);
  font-family: Inter;
  font-size: 32.55px;
  font-weight: 500;
  line-height: 39px;
  text-align: left;
}

.interface-section__select {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: white;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-top: 15px;
  z-index: 1;
}

.interface-section__select--pair {
  color: rgba(255, 255, 255, 1);

  font-family: 'Graphik', sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
  text-align: left;
}

.interface-section__select--duration {
  /* Стили для второго блока (длительность) */
  background: rgba(46, 46, 61, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 20px 46px;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  width: max-content;
}

.interface-section__dropdown-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.interface-section__dropdown-arrow img {
  width: 10px;
  height: 10px;
}

/* Стили для стрелки в первом блоке (торговые пары) */
.interface-section__select--pair .interface-section__dropdown-arrow {
  border-radius: 16px;
  backdrop-filter: blur(4px);
  background: rgba(188, 188, 188, 0.14);
  padding: 10px;
  margin-left: 10px;
}

.interface-section__select--pair .interface-section__dropdown-arrow img {
  width: 10px;
  height: 10px;
}

/* Стили для стрелки во втором блоке (длительность) */
.interface-section__select--duration .interface-section__dropdown-arrow {
  /* Добавьте стили для второго блока */
}

.interface-section__select--duration .interface-section__dropdown-arrow img {
  /* Добавьте стили для изображения стрелки во втором блоке */
}

.interface-section__select.active .interface-section__dropdown-arrow {
  transform: rotate(180deg);
}

.interface-section__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(46, 46, 61, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999999;
  max-height: 430px;
  overflow-y: auto;
}

/* Стилизация скроллбара для dropdown торговых пар */
.interface-section__select--pair .interface-section__dropdown::-webkit-scrollbar {
  width: 6px;
}

.interface-section__select--pair .interface-section__dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.interface-section__select--pair .interface-section__dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: background 0.2s ease;
}

.interface-section__select--pair .interface-section__dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Для Firefox */
.interface-section__select--pair .interface-section__dropdown {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}

.interface-section__select.active {
  z-index: 999999;
  position: relative;
}

/* Когда селектор активен, его родительский блок должен быть выше других блоков */
.interface-section__control-group.dropdown-active {
  z-index: 999998;
  position: relative;
}

.interface-section__select.active .interface-section__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.interface-section__option {
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.interface-section__option::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(82, 255, 105, 0.3);
  transition: width 0.3s ease;
}

.interface-section__option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.interface-section__option.active {
  background: rgba(255, 255, 255, 0.15);
  font-weight: 500;
}

.interface-section__signal {
  box-sizing: border-box;
  border: 1.11px solid rgba(255, 255, 255, 0.3);
  border-radius: 33.18px;
  backdrop-filter: blur(23.88729476928711px);
  background: rgba(101, 101, 101, 0.23);
  padding: 30px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
  z-index: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: fadeInScale 0.6s ease-out 0.8s both;
}

.interface-section__signal:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(82, 255, 105, 0.5);
  box-shadow: 0 10px 30px rgba(82, 255, 105, 0.2);
  background: rgba(101, 101, 101, 0.3);
}

.interface-section__signal-wrapper {
  margin-top: 44px;
}

.interface-section__signal-card {
  box-sizing: border-box;
  border: 1.11px solid var(--Stroke-Gray, rgba(40, 40, 40, 1));
  border-radius: 24.33px;
  background: radial-gradient(42.00% 70.00% at 50% 100%, rgba(107.34, 106.77, 123.94, 0.3), rgba(0, 0, 0, 0))
    /* Предупреждение: градиент использует вращение, не поддерживаемое CSS, и может работать не так, как ожидается. */
    , var(--Color-BlackShape, rgba(11, 11, 11, 1));
  padding: 22px;
  transition: all 0.3s ease;
  animation: fadeInScale 0.5s ease-out 0.9s both;
}

.interface-section__signal-card:hover {
  transform: scale(1.02);
  border-color: rgba(82, 255, 105, 0.4);
  box-shadow: 0 5px 20px rgba(82, 255, 105, 0.15);
}

.interface-section__signal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: 15px;
  border-bottom: 1.11px solid rgba(69, 69, 69, 1);
  margin-bottom: 25px;
}

.interface-section__signal-type {
  color: rgba(82, 255, 105, 1);

  font-family: 'Graphik', sans-serif;
  ;
  font-size: 34.76px;
  font-weight: 600;
  line-height: 42px;
  text-align: left;
}

.interface-section__signal-button {
  color: rgba(255, 255, 255, 1);
  font-family: 'Graphik', sans-serif;
  font-size: 17.69px;
  font-weight: 300;
  line-height: 21px;
  border-radius: 7.74px;
  background: rgba(35, 35, 35, 1);
  padding: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid transparent;
  user-select: none;
  animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0);
  }
}

.interface-section__signal-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.interface-section__signal-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.interface-section__signal-button:hover {
  transform: translateY(-2px) scale(1.05);
  background: rgba(45, 45, 45, 1);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3), 0 0 15px rgba(139, 92, 246, 0.2);
  color: rgba(255, 255, 255, 1);
}

.interface-section__signal-button:hover::before {
  width: 200px;
  height: 200px;
}

.interface-section__signal-button:hover::after {
  left: 100%;
}

.interface-section__signal-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.2);
  transition: all 0.1s ease;
}

.interface-section__signal-button span,
.interface-section__signal-button {
  position: relative;
  z-index: 2;
}

.interface-section__signal-times {
  /* Добавьте стили для блока с временем */
}

.interface-section__time-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.interface-section__time-label {
  color: rgba(125, 125, 125, 1);

  font-family: Inter;
  font-size: 17.69px;
  font-weight: 400;
  line-height: 21px;
}

.interface-section__time-value-icon {
  display: flex;
  gap: 5.5px;
  align-items: center;
}

.interface-section__time-value {
  display: flex;
  gap: 16.6px;
}

.interface-section__date {
  color: rgba(255, 255, 255, 1);
  font-family: 'Graphik', sans-serif;
  ;
  font-style: Regular;
  font-size: 19.91px;
  font-weight: 400;
  line-height: 24px;
}

.interface-section__time {
  color: rgba(255, 255, 255, 1);

  font-family: 'Graphik', sans-serif;
  ;
  font-style: Regular;
  font-size: 19.91px;
  font-weight: 400;
  line-height: 24px;
}

.interface-section__signal-list {
  display: flex;
  gap: 33px;
}

.interface-section__signal-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-end;
}

.interface-section__signal-item-label {
  color: rgba(125, 125, 125, 1);

  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
}

.interface-section__signal-item-value {
  color: rgba(255, 255, 255, 1);

  font-family: 'Graphik', sans-serif;
  ;
  font-size: 19.91px;
  font-weight: 400;
  line-height: 24px;
}

.interface-section__signal-item:last-child .interface-section__signal-item-value {
  color: rgba(82, 255, 105, 1);
}

/* Адаптивность для interface-section */
@media (max-width: 1400px) {
  .interface-section {
    padding: 20px 15px;
  }

  .interface-section__image {
    left: 10%;
    max-width: 400px;
  }

  .interface-section__container {
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .interface-section {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-bottom: 80px;
  }

  .interface-section__controls {
    flex-direction: row;
  }

  .interface-section__image {
    position: relative;
    left: auto;
    max-width: 300px;
    margin-bottom: 30px;
  }

  .interface-section__header {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .interface-section__title {
    font-size: 48px;
    line-height: 52px;
  }

  .interface-section__container {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .interface-section__signal {
    max-width: 100%;
  }

  .interface-section__header-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .interface-section {
    padding: 20px 15px;
    margin-bottom: 50px;
  }

  .interface-section__image {
    max-width: 250px;
    margin-bottom: 20px;
  }

  .interface-section__title {
    font-size: 36px;
    line-height: 42px;
  }

  .interface-section__control-group {
    padding: 25px;
    height: auto;
    min-height: 200px;
  }

  .interface-section__label {
    font-size: 22px;
    line-height: 28px;
  }

  .interface-section__subtitle {
    font-size: 22px;
    line-height: 28px;
  }

  .interface-section__subtitle--signal {
    font-size: 26px;
    line-height: 32px;
  }

  .interface-section__select--pair {
    font-size: 32px;
    line-height: 40px;
  }

  .interface-section__select--duration {
    padding: 15px 30px;
    font-size: 14px;
  }

  .interface-section__signal {
    padding: 25px;
  }

  .interface-section__signal-type {
    font-size: 28px;
    line-height: 34px;
  }

  .interface-section__signal-button {
    font-size: 14px;
    padding: 8px;
  }

  .interface-section__signal-list {
    flex-direction: column;
    gap: 20px;
  }

  .interface-section__controls {
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .interface-section {
    padding: 15px 10px;
    margin-bottom: 40px;
  }

  .interface-section__image {
    max-width: 200px;
    margin-bottom: 15px;
  }

  .interface-section__title {
    font-size: 28px;
    line-height: 34px;
    text-align: center;
  }

  .interface-section__header {
    margin-bottom: 20px;
  }

  .interface-section__container {
    gap: 20px;
    width: 100%;
  }

  .interface-section__control-group {
    padding: 20px;
    min-height: 180px;
  }

  .interface-section__label {
    font-size: 18px;
    line-height: 24px;
  }

  .interface-section__subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .interface-section__subtitle--signal {
    font-size: 22px;
    line-height: 28px;
  }

  .interface-section__select--pair {
    font-size: 24px;
    line-height: 30px;
    padding: 15px;
  }

  .interface-section__select--duration {
    padding: 12px 20px;
    font-size: 12px;
  }

  .interface-section__dropdown {
    max-height: 300px;
  }

  .interface-section__signal {
    padding: 20px;
  }

  .interface-section__signal-type {
    font-size: 24px;
    line-height: 30px;
  }

  .interface-section__signal-button {
    font-size: 12px;
    padding: 6px;
  }

  .interface-section__time-label {
    font-size: 14px;
    line-height: 18px;
  }

  .interface-section__date,
  .interface-section__time {
    font-size: 16px;
    line-height: 20px;
  }

  .interface-section__signal-item-label {
    font-size: 14px;
    line-height: 18px;
  }

  .interface-section__signal-item-value {
    font-size: 16px;
    line-height: 20px;
  }

  .interface-section__controls {
    flex-direction: column;
  }
}