@charset "UTF-8";
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes waveMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-25px) translateY(20px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
@keyframes waveMoveReverse {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(25px) translateY(-20px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.3;
    filter: blur(40px);
  }
  50% {
    opacity: 0.5;
    filter: blur(60px);
  }
}
@keyframes spotMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -30px) scale(1.2);
  }
  66% {
    transform: translate(-30px, 40px) scale(0.8);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes spotMoveReverse {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-50px, 30px) scale(0.8);
  }
  66% {
    transform: translate(30px, -40px) scale(1.2);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes particlesFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}
@keyframes glow {
  0%, 100% {
    opacity: 0.4;
    filter: brightness(1);
  }
  50% {
    opacity: 0.8;
    filter: brightness(1.5);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes lineMove {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes shapeFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -20px) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: translate(-20px, -40px) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translate(-30px, -20px) rotate(270deg);
    opacity: 0.5;
  }
}
@keyframes gridPulse {
  0%, 100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes waveFlow {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(50px) translateY(-30px);
    opacity: 0.6;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 0.4;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #0a0e1a;
  color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}
.header__logo:hover {
  transform: scale(1.05);
}
.header__logo svg {
  animation: rotate 20s linear infinite;
  transition: transform 0.3s ease;
}
.header__logo:hover svg {
  animation-play-state: paused;
  transform: rotate(360deg);
}
.header__logo-text {
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background-color: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .header__nav--active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
.header__nav-link {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}
.header__nav-link:hover {
  color: #ffffff;
}
.header__nav-link--cta {
  color: #00ff88;
  font-weight: 600;
}
.header__nav-link--cta:hover {
  color: #00d4ff;
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}
.header__burger span {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.header__burger--active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 2px);
}
.header__burger--active span:nth-child(2) {
  opacity: 0;
}
.header__burger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4rem;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-subtitle {
  position: relative;
  z-index: 1;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #a0aec0;
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-subtitle.animate {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.btn--primary {
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  color: #0a0e1a;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}
.btn--secondary {
  background: transparent;
  color: #00ff88;
  border: 2px solid #00ff88;
}
.btn--secondary:hover {
  background: rgba(0, 255, 136, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}
.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(80px + 6rem) 0 6rem;
  overflow: hidden;
}
.hero .container {
  position: static;
}
.hero .wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hero .wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }
}
.hero .wrap .btn {
  height: 60px;
}
@media screen and (max-width: 768px) {
  .hero .wrap .btn {
    width: 100%;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0e1a;
  z-index: 0;
  overflow: hidden;
}
.hero__bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: radial-gradient(ellipse 120% 100% at 20% 100%, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.08) 40%, transparent 70%);
  animation: waveMove 8s ease-in-out infinite;
  will-change: transform;
}
.hero__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: radial-gradient(ellipse 100% 80% at 80% 100%, rgba(0, 212, 255, 0.12) 0%, rgba(0, 212, 255, 0.06) 40%, transparent 70%);
  animation: waveMoveReverse 10s ease-in-out infinite;
  will-change: transform;
}
.hero__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg-overlay::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, rgba(0, 255, 136, 0.1) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: spotMove 12s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.hero__bg-overlay::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18) 0%, rgba(0, 212, 255, 0.09) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: spotMoveReverse 15s ease-in-out infinite, glowPulse 5s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.hero__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg-particles::before, .hero__bg-particles::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(0, 255, 136, 0.5);
  border-radius: 50%;
  box-shadow: 15% 25% 0 0 rgba(0, 255, 136, 0.4), 35% 15% 0 0 rgba(0, 212, 255, 0.4), 55% 35% 0 0 rgba(0, 255, 136, 0.3), 75% 20% 0 0 rgba(0, 212, 255, 0.3), 85% 45% 0 0 rgba(0, 255, 136, 0.2);
  animation: particlesFloat 12s linear infinite;
}
.hero__bg-particles::before {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.hero__bg-particles::after {
  top: 30%;
  right: 15%;
  background: rgba(0, 212, 255, 0.5);
  animation-delay: 6s;
  animation-duration: 15s;
  box-shadow: 20% 30% 0 0 rgba(0, 212, 255, 0.4), 40% 20% 0 0 rgba(0, 255, 136, 0.4), 60% 40% 0 0 rgba(0, 212, 255, 0.3), 80% 25% 0 0 rgba(0, 255, 136, 0.3);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 2rem;
  color: #00ff88;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}
.hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s;
  animation-fill-mode: both;
}
.hero__title-accent {
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite, fadeInUp 0.8s ease-out 0.3s;
  animation-fill-mode: both;
}
.hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: #a0aec0;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.4s;
  animation-fill-mode: both;
}
@media screen and (max-width: 768px) {
  .hero__subtitle {
    font-size: 1rem;
  }
  .hero__subtitle br {
    display: none;
  }
}
.hero__bonus {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 0.5rem;
  color: #00ff88;
  font-weight: 600;
  font-size: 1rem;
  animation: fadeInUp 0.8s ease-out 0.5s;
  animation-fill-mode: both;
}
@media screen and (max-width: 768px) {
  .hero__bonus {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hero__bonus .hero__bonus-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.hero__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 0.6s;
  animation-fill-mode: both;
  max-width: 800px;
  width: 100%;
}
.hero__info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero__info-label {
  color: #fff;
  font-size: 0.875rem;
}
.hero__info-value {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s;
  animation-fill-mode: both;
  max-width: 320px;
  width: 100%;
}
.hero__cta .btn {
  width: 100%;
}
.hero__trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.8s;
  animation-fill-mode: both;
}
.hero__visual {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  overflow: hidden;
  pointer-events: none;
  animation: fadeIn 2s ease-out 1s;
  animation-fill-mode: both;
}
.hero__grid {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__grid-svg {
  width: 100%;
  height: 100%;
  min-width: 1200px;
}
.hero__grid-svg .grid-lines line {
  animation: pulse 4s ease-in-out infinite;
}
.hero__grid-svg .grid-lines line:nth-child(1) {
  animation-delay: 0.15s;
}
.hero__grid-svg .grid-lines line:nth-child(2) {
  animation-delay: 0.3s;
}
.hero__grid-svg .grid-lines line:nth-child(3) {
  animation-delay: 0.45s;
}
.hero__grid-svg .grid-lines line:nth-child(4) {
  animation-delay: 0.6s;
}
.hero__grid-svg .grid-lines line:nth-child(5) {
  animation-delay: 0.75s;
}
.hero__grid-svg .grid-lines line:nth-child(6) {
  animation-delay: 0.9s;
}
.hero__grid-svg .grid-lines line:nth-child(7) {
  animation-delay: 1.05s;
}
.hero__grid-svg .grid-lines line:nth-child(8) {
  animation-delay: 1.2s;
}
.hero__grid-svg .grid-lines line:nth-child(9) {
  animation-delay: 1.35s;
}
.hero__grid-svg .grid-lines line:nth-child(10) {
  animation-delay: 1.5s;
}
.hero__grid-svg .grid-lines line:nth-child(11) {
  animation-delay: 1.65s;
}
.hero__grid-svg .grid-lines line:nth-child(12) {
  animation-delay: 1.8s;
}
.hero__grid-svg .grid-lines line:nth-child(13) {
  animation-delay: 1.95s;
}
.hero__grid-svg .grid-lines line:nth-child(14) {
  animation-delay: 2.1s;
}
.hero__grid-svg .grid-lines line:nth-child(15) {
  animation-delay: 2.25s;
}
.hero__grid-svg .grid-lines line:nth-child(16) {
  animation-delay: 2.4s;
}
.hero__grid-svg .grid-lines line:nth-child(17) {
  animation-delay: 2.55s;
}
.hero__grid-svg .grid-lines line:nth-child(18) {
  animation-delay: 2.7s;
}
.hero__grid-svg .support-line,
.hero__grid-svg .resistance-line {
  animation: pulse 3s ease-in-out infinite;
}
.hero__grid-svg .candle {
  animation: fadeInUp 0.8s ease-out backwards;
}
.hero__grid-svg .candle:nth-of-type(1) {
  animation-delay: 1.6s;
}
.hero__grid-svg .candle:nth-of-type(2) {
  animation-delay: 1.7s;
}
.hero__grid-svg .candle:nth-of-type(3) {
  animation-delay: 1.8s;
}
.hero__grid-svg .candle:nth-of-type(4) {
  animation-delay: 1.9s;
}
.hero__grid-svg .candle:nth-of-type(5) {
  animation-delay: 2s;
}
.hero__grid-svg .candle:nth-of-type(6) {
  animation-delay: 2.1s;
}
.hero__grid-svg .candle:nth-of-type(7) {
  animation-delay: 2.2s;
}
.hero__grid-svg .candle:nth-of-type(8) {
  animation-delay: 2.3s;
}
.hero__grid-svg .candle:nth-of-type(9) {
  animation-delay: 2.4s;
}
.hero__grid-svg .candle:nth-of-type(10) {
  animation-delay: 2.5s;
}
.hero__grid-svg .candle:nth-of-type(11) {
  animation-delay: 2.6s;
}
.hero__grid-svg .candle:nth-of-type(12) {
  animation-delay: 2.7s;
}
.hero__grid-svg .candle:nth-of-type(13) {
  animation-delay: 2.8s;
}
.hero__grid-svg .candle:nth-of-type(14) {
  animation-delay: 2.9s;
}
.hero__grid-svg .volume-bars rect {
  animation: scaleUp 0.6s ease-out backwards;
  transform-origin: bottom center;
}
.hero__grid-svg .volume-bars rect:nth-child(1) {
  animation-delay: 1.6s;
}
.hero__grid-svg .volume-bars rect:nth-child(2) {
  animation-delay: 1.7s;
}
.hero__grid-svg .volume-bars rect:nth-child(3) {
  animation-delay: 1.8s;
}
.hero__grid-svg .volume-bars rect:nth-child(4) {
  animation-delay: 1.9s;
}
.hero__grid-svg .volume-bars rect:nth-child(5) {
  animation-delay: 2s;
}
.hero__grid-svg .volume-bars rect:nth-child(6) {
  animation-delay: 2.1s;
}
.hero__grid-svg .volume-bars rect:nth-child(7) {
  animation-delay: 2.2s;
}
.hero__grid-svg .volume-bars rect:nth-child(8) {
  animation-delay: 2.3s;
}
.hero__grid-svg .volume-bars rect:nth-child(9) {
  animation-delay: 2.4s;
}
.hero__grid-svg .volume-bars rect:nth-child(10) {
  animation-delay: 2.5s;
}
.hero__grid-svg .volume-bars rect:nth-child(11) {
  animation-delay: 2.6s;
}
.hero__grid-svg .volume-bars rect:nth-child(12) {
  animation-delay: 2.7s;
}
.hero__grid-svg .volume-bars rect:nth-child(13) {
  animation-delay: 2.8s;
}
.hero__grid-svg .volume-bars rect:nth-child(14) {
  animation-delay: 2.9s;
}

@keyframes scaleUp {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a0aec0;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  border: 1px solid rgba(0, 255, 136, 0.2);
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.trust-item:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: rgba(10, 14, 26, 0.95);
  border-color: rgba(0, 255, 136, 0.4);
}
.trust-item svg {
  color: #00ff88;
  animation: pulse 2s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.trust-item:hover svg {
  transform: scale(1.1) rotate(5deg);
}

.pain {
  position: relative;
  padding: 6rem 0;
  background-color: #111827;
  overflow: hidden;
}
.pain .section-subtitle {
  color: #fff;
}
.pain__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.pain__bg-overlay::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.08) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: spotMove 14s ease-in-out infinite, glowPulse 5s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.pain__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, rgba(0, 212, 255, 0.06) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: spotMoveReverse 16s ease-in-out infinite, glowPulse 6s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.pain__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.pain__bg-particles::before, .pain__bg-particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 255, 136, 0.4);
  border-radius: 50%;
  box-shadow: 20% 30% 0 0 rgba(0, 255, 136, 0.3), 40% 20% 0 0 rgba(0, 212, 255, 0.3), 60% 40% 0 0 rgba(0, 255, 136, 0.2), 80% 25% 0 0 rgba(0, 212, 255, 0.2);
  animation: particlesFloat 15s linear infinite;
}
.pain__bg-particles::before {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}
.pain__bg-particles::after {
  top: 60%;
  right: 20%;
  background: rgba(0, 212, 255, 0.4);
  animation-delay: 7s;
  animation-duration: 18s;
}
.pain__bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.15;
}
.pain__bg-grid::before, .pain__bg-grid::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.3) 50%, transparent 100%);
  animation: lineMove 8s linear infinite;
}
.pain__bg-grid::before {
  top: 25%;
  animation-delay: 0s;
}
.pain__bg-grid::after {
  top: 75%;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
  animation-delay: 4s;
  animation-duration: 10s;
}
.pain__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.pain__dialogue {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 2rem;
  border-left: 3px solid #00ff88;
  background-color: rgba(0, 255, 136, 0.05);
  border-radius: 0.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.pain__dialogue.animate {
  opacity: 1;
  transform: translateY(0);
}
.pain__dialogue-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #a0aec0;
  font-style: italic;
}
.pain__dialogue-text:last-child {
  margin-bottom: 0;
}
.pain__dialogue-text--accent {
  color: #00ff88;
  font-style: normal;
  font-weight: 600;
}

.pain-card {
  padding: 2rem;
  background-color: #1a1f2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pain-card.animate {
  opacity: 1;
  transform: translateY(0);
}
.pain-card:hover {
  border-color: #00ff88;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}
.pain-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #00ff88;
}
.pain-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.pain-card__text {
  color: #a0aec0;
  line-height: 1.6;
}

.why {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.why__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.why__bg-overlay::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.08) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(55px);
  animation: spotMoveReverse 13s ease-in-out infinite, glowPulse 4.5s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.why__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 30%;
  left: 15%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, rgba(0, 255, 136, 0.06) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(55px);
  animation: spotMove 17s ease-in-out infinite, glowPulse 5.5s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.why__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.why__bg-particles::before, .why__bg-particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  box-shadow: 25% 35% 0 0 rgba(0, 212, 255, 0.3), 45% 15% 0 0 rgba(0, 255, 136, 0.3), 65% 45% 0 0 rgba(0, 212, 255, 0.2), 85% 30% 0 0 rgba(0, 255, 136, 0.2);
  animation: particlesFloat 16s linear infinite;
}
.why__bg-particles::before {
  top: 25%;
  right: 12%;
  animation-delay: 0s;
}
.why__bg-particles::after {
  bottom: 25%;
  left: 18%;
  background: rgba(0, 255, 136, 0.4);
  animation-delay: 8s;
  animation-duration: 19s;
}
.why__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.why__item {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.why__item.animate {
  opacity: 1;
  transform: translateX(0);
}
.why__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.why__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #00ff88;
}
.why__item-text {
  color: #a0aec0;
  line-height: 1.8;
  font-size: 1.125rem;
}

.bridge {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  text-align: center;
  overflow: hidden;
}
.bridge__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bridge__bg-overlay::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, rgba(0, 255, 136, 0.1) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: spotMove 12s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.bridge__bg-overlay::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18) 0%, rgba(0, 212, 255, 0.09) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: spotMoveReverse 15s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.bridge__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bridge__bg-particles::before, .bridge__bg-particles::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(0, 255, 136, 0.5);
  border-radius: 50%;
  box-shadow: 30% 40% 0 0 rgba(0, 255, 136, 0.4), 50% 25% 0 0 rgba(0, 212, 255, 0.4), 70% 50% 0 0 rgba(0, 255, 136, 0.3), 90% 35% 0 0 rgba(0, 212, 255, 0.3);
  animation: particlesFloat 14s linear infinite;
}
.bridge__bg-particles::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.bridge__bg-particles::after {
  bottom: 20%;
  right: 20%;
  background: rgba(0, 212, 255, 0.5);
  animation-delay: 7s;
  animation-duration: 17s;
}
.bridge__bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bridge__bg-shapes::before, .bridge__bg-shapes::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(0, 255, 136, 0.2);
  border-radius: 50%;
  animation: shapeFloat 20s ease-in-out infinite;
}
.bridge__bg-shapes::before {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}
.bridge__bg-shapes::after {
  bottom: 15%;
  right: 10%;
  width: 60px;
  height: 60px;
  border-color: rgba(0, 212, 255, 0.2);
  animation-delay: 10s;
  animation-duration: 25s;
}
.bridge__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.bridge__content.animate {
  opacity: 1;
  transform: scale(1);
}
.bridge__text {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.bridge__text--accent {
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.webinar {
  position: relative;
  padding: 6rem 0;
  background-color: #111827;
  overflow: hidden;
}
.webinar__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.webinar__bg-overlay::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.14) 0%, rgba(0, 255, 136, 0.07) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(52px);
  animation: spotMove 15s ease-in-out infinite, glowPulse 4.8s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.webinar__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 12%;
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.13) 0%, rgba(0, 212, 255, 0.06) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(52px);
  animation: spotMoveReverse 18s ease-in-out infinite, glowPulse 5.2s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.webinar__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.webinar__bg-particles::before, .webinar__bg-particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 255, 136, 0.4);
  border-radius: 50%;
  box-shadow: 22% 32% 0 0 rgba(0, 255, 136, 0.3), 42% 18% 0 0 rgba(0, 212, 255, 0.3), 62% 42% 0 0 rgba(0, 255, 136, 0.2), 82% 28% 0 0 rgba(0, 212, 255, 0.2);
  animation: particlesFloat 17s linear infinite;
}
.webinar__bg-particles::before {
  top: 18%;
  left: 14%;
  animation-delay: 0s;
}
.webinar__bg-particles::after {
  bottom: 18%;
  right: 16%;
  background: rgba(0, 212, 255, 0.4);
  animation-delay: 8.5s;
  animation-duration: 20s;
}
.webinar__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.webinar__main {
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.webinar__main.animate {
  opacity: 1;
  transform: translateY(0);
}
.webinar__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #a0aec0;
  margin-bottom: 2rem;
}
.webinar__benefits {
  padding: 2rem;
  background-color: #1a1f2e;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.webinar__benefits.animate {
  opacity: 1;
  transform: translateY(0);
}
.webinar__benefits-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #00ff88;
}
.webinar__list {
  list-style: none;
}
.webinar__list-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #a0aec0;
  line-height: 1.8;
  font-size: 1.125rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.webinar__list-item.animate {
  opacity: 1;
  transform: translateX(0);
}
.webinar__list-item:last-child {
  margin-bottom: 0;
}
.webinar__list-icon {
  color: #00ff88;
  font-weight: 700;
  flex-shrink: 0;
}

.agenda {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.agenda__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.agenda__bg-overlay::before {
  content: "";
  position: absolute;
  top: 25%;
  right: 8%;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.16) 0%, rgba(0, 212, 255, 0.08) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(54px);
  animation: spotMoveReverse 14s ease-in-out infinite, glowPulse 5.1s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.agenda__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 25%;
  left: 10%;
  width: 290px;
  height: 290px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.13) 0%, rgba(0, 255, 136, 0.06) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(54px);
  animation: spotMove 16s ease-in-out infinite, glowPulse 4.7s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.agenda__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.agenda__bg-particles::before, .agenda__bg-particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  box-shadow: 24% 34% 0 0 rgba(0, 212, 255, 0.3), 44% 19% 0 0 rgba(0, 255, 136, 0.3), 64% 44% 0 0 rgba(0, 212, 255, 0.2), 84% 29% 0 0 rgba(0, 255, 136, 0.2);
  animation: particlesFloat 18s linear infinite;
}
.agenda__bg-particles::before {
  top: 22%;
  right: 10%;
  animation-delay: 0s;
}
.agenda__bg-particles::after {
  bottom: 22%;
  left: 15%;
  background: rgba(0, 255, 136, 0.4);
  animation-delay: 9s;
  animation-duration: 21s;
}
.agenda__bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.agenda__bg-shapes::before, .agenda__bg-shapes::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(0, 255, 136, 0.15);
  border-radius: 8px;
  transform: rotate(45deg);
  animation: shapeFloat 22s ease-in-out infinite;
}
.agenda__bg-shapes::before {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.agenda__bg-shapes::after {
  bottom: 10%;
  right: 5%;
  width: 70px;
  height: 70px;
  border-color: rgba(0, 212, 255, 0.15);
  animation-delay: 11s;
  animation-duration: 28s;
}
.agenda__timeline {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.agenda__item {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.agenda__item.animate {
  opacity: 1;
  transform: translateX(0);
}
.agenda__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.agenda__item-number {
  font-size: 2rem;
  font-weight: 700;
  color: #00ff88;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 255, 136, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}
.agenda__item:hover .agenda__item-number {
  transform: scale(1.1);
  background-color: rgba(0, 255, 136, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}
.agenda__item-content {
  flex: 1;
}
.agenda__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.agenda__item-text {
  color: #a0aec0;
  line-height: 1.8;
}

.for-whom {
  position: relative;
  padding: 6rem 0;
  background-color: #111827;
  overflow: hidden;
}
.for-whom__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.for-whom__bg-overlay::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 12%;
  width: 310px;
  height: 310px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.08) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(53px);
  animation: spotMove 13s ease-in-out infinite, glowPulse 4.6s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.for-whom__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 20%;
  right: 14%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, rgba(0, 212, 255, 0.06) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(53px);
  animation: spotMoveReverse 17s ease-in-out infinite, glowPulse 5.3s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.for-whom__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.for-whom__bg-particles::before, .for-whom__bg-particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 255, 136, 0.4);
  border-radius: 50%;
  box-shadow: 21% 31% 0 0 rgba(0, 255, 136, 0.3), 41% 17% 0 0 rgba(0, 212, 255, 0.3), 61% 41% 0 0 rgba(0, 255, 136, 0.2), 81% 27% 0 0 rgba(0, 212, 255, 0.2);
  animation: particlesFloat 16s linear infinite;
}
.for-whom__bg-particles::before {
  top: 16%;
  left: 16%;
  animation-delay: 0s;
}
.for-whom__bg-particles::after {
  bottom: 16%;
  right: 18%;
  background: rgba(0, 212, 255, 0.4);
  animation-delay: 8s;
  animation-duration: 19s;
}
.for-whom__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}
.for-whom__col .section-title {
  text-align: left;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 2rem;
}
.for-whom__list {
  list-style: none;
}
.for-whom__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 0.5rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.for-whom__item.animate {
  opacity: 1;
  transform: translateY(0);
}
.for-whom__item--positive {
  background-color: rgba(0, 255, 136, 0.05);
  border-left: 3px solid #00ff88;
}
.for-whom__item--negative {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #718096;
}
.for-whom__icon {
  flex-shrink: 0;
  font-weight: 700;
}
.for-whom__item--positive .for-whom__icon {
  color: #00ff88;
}
.for-whom__item--negative .for-whom__icon {
  color: #718096;
}

.author {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.author__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.author__bg-overlay::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 15%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.16) 0%, rgba(0, 255, 136, 0.08) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(56px);
  animation: spotMove 14.5s ease-in-out infinite, glowPulse 5s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.author__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 30%;
  right: 18%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.14) 0%, rgba(0, 212, 255, 0.07) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(56px);
  animation: spotMoveReverse 16.5s ease-in-out infinite, glowPulse 5.4s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.author__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.author__bg-particles::before, .author__bg-particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 255, 136, 0.4);
  border-radius: 50%;
  box-shadow: 23% 33% 0 0 rgba(0, 255, 136, 0.3), 43% 20% 0 0 rgba(0, 212, 255, 0.3), 63% 43% 0 0 rgba(0, 255, 136, 0.2), 83% 30% 0 0 rgba(0, 212, 255, 0.2);
  animation: particlesFloat 17s linear infinite;
}
.author__bg-particles::before {
  top: 24%;
  left: 17%;
  animation-delay: 0s;
}
.author__bg-particles::after {
  bottom: 24%;
  right: 19%;
  background: rgba(0, 212, 255, 0.4);
  animation-delay: 8.5s;
  animation-duration: 20s;
}
.author .section-title {
  margin-bottom: 4rem;
}
.author__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .author__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.author__image {
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.author__image.animate {
  opacity: 1;
  transform: translateX(0);
}
.author__photo {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 2px solid rgba(0, 255, 136, 0.3);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.author__photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 255, 136, 0.3);
}
.author__text {
  display: flex;
  flex-direction: column;
}
.author__info {
  margin-top: 0;
}
.author__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 1.5rem;
}
.author__name-subtitle {
  color: #a0aec0;
  font-weight: 400;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .author__name-subtitle {
    margin-left: 0;
  }
}
.author__bio {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #a0aec0;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.author__bio.animate {
  opacity: 1;
  transform: translateY(0);
}
.author__bio:last-child {
  margin-bottom: 0;
}
.author__bio strong {
  color: #00ff88;
  font-weight: 600;
}

.proof {
  position: relative;
  padding: 6rem 0;
  background-color: #111827;
  overflow: hidden;
}
.proof__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.proof__bg-overlay::before {
  content: "";
  position: absolute;
  top: 18%;
  right: 11%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.08) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(51px);
  animation: spotMoveReverse 15s ease-in-out infinite, glowPulse 4.9s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.proof__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 18%;
  left: 13%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, rgba(0, 255, 136, 0.06) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(51px);
  animation: spotMove 17s ease-in-out infinite, glowPulse 5.1s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.proof__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.proof__bg-particles::before, .proof__bg-particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  box-shadow: 26% 36% 0 0 rgba(0, 212, 255, 0.3), 46% 22% 0 0 rgba(0, 255, 136, 0.3), 66% 46% 0 0 rgba(0, 212, 255, 0.2), 86% 32% 0 0 rgba(0, 255, 136, 0.2);
  animation: particlesFloat 18s linear infinite;
}
.proof__bg-particles::before {
  top: 20%;
  right: 13%;
  animation-delay: 0s;
}
.proof__bg-particles::after {
  bottom: 20%;
  left: 16%;
  background: rgba(0, 255, 136, 0.4);
  animation-delay: 9s;
  animation-duration: 21s;
}
.proof__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.proof-card {
  padding: 2rem;
  background-color: #1a1f2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.proof-card.animate {
  opacity: 1;
  transform: translateY(0);
}
.proof-card:hover {
  border-color: #00ff88;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}
.proof-card__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #a0aec0;
  margin-bottom: 2rem;
  font-style: italic;
}
.proof-card__author {
  color: #00ff88;
  font-weight: 600;
}

.webinar-reviews {
  position: relative;
  padding: 6rem 0;
  background-color: #0a0e1a;
  overflow: hidden;
}
.webinar-reviews__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.webinar-reviews__bg-overlay::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.08) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(51px);
  animation: spotMove 15s ease-in-out infinite, glowPulse 4.9s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.webinar-reviews__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 12%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, rgba(0, 212, 255, 0.06) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(51px);
  animation: spotMoveReverse 17s ease-in-out infinite, glowPulse 5.1s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.webinar-reviews__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.webinar-reviews__bg-particles::before, .webinar-reviews__bg-particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 255, 136, 0.4);
  border-radius: 50%;
  box-shadow: 26% 36% 0 0 rgba(0, 255, 136, 0.3), 46% 22% 0 0 rgba(0, 212, 255, 0.3), 66% 46% 0 0 rgba(0, 255, 136, 0.2), 86% 32% 0 0 rgba(0, 212, 255, 0.2);
  animation: particlesFloat 18s linear infinite;
}
.webinar-reviews__bg-particles::before {
  top: 20%;
  right: 13%;
  animation-delay: 0s;
}
.webinar-reviews__bg-particles::after {
  bottom: 20%;
  left: 16%;
  background: rgba(0, 212, 255, 0.4);
  animation-delay: 9s;
  animation-duration: 21s;
}
.webinar-reviews__container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.webinar-reviews__container.animate {
  opacity: 1;
  transform: translateY(0);
}
.webinar-reviews__card {
  padding: 4rem;
  background-color: #1a1f2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.webinar-reviews__card.active {
  opacity: 1;
  transform: translateY(0);
}
.webinar-reviews__text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #a0aec0;
  margin-bottom: 2rem;
  font-style: italic;
  text-align: center;
}
.webinar-reviews__author {
  color: #00ff88;
  font-weight: 600;
  text-align: center;
  font-size: 1.125rem;
}
.webinar-reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.webinar-reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.webinar-reviews__dot:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.webinar-reviews__dot.active {
  background-color: #00ff88;
  width: 30px;
  border-radius: 5px;
}

.raffle {
  position: relative;
  padding: 6rem 0;
  background-color: #111827;
  overflow: hidden;
}
.raffle__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.raffle__bg-overlay::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 9%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.16) 0%, rgba(0, 255, 136, 0.08) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(54px);
  animation: spotMove 13.5s ease-in-out infinite, glowPulse 4.7s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.raffle__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 22%;
  right: 13%;
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.13) 0%, rgba(0, 212, 255, 0.06) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(54px);
  animation: spotMoveReverse 16s ease-in-out infinite, glowPulse 5.2s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.raffle__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.raffle__bg-particles::before, .raffle__bg-particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 255, 136, 0.4);
  border-radius: 50%;
  box-shadow: 27% 37% 0 0 rgba(0, 255, 136, 0.3), 47% 23% 0 0 rgba(0, 212, 255, 0.3), 67% 47% 0 0 rgba(0, 255, 136, 0.2), 87% 33% 0 0 rgba(0, 212, 255, 0.2);
  animation: particlesFloat 19s linear infinite;
}
.raffle__bg-particles::before {
  top: 19%;
  left: 15%;
  animation-delay: 0s;
}
.raffle__bg-particles::after {
  bottom: 19%;
  right: 17%;
  background: rgba(0, 212, 255, 0.4);
  animation-delay: 9.5s;
  animation-duration: 22s;
}
.raffle__title {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 600;
  max-width: 600px;
  text-align: start;
  width: 100%;
}
.raffle__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.raffle__text {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.raffle__text strong {
  color: #00ff88;
  font-weight: 600;
}
.raffle__list {
  text-align: left;
  max-width: 800px;
  margin: 2rem auto;
  padding-left: 2rem;
  list-style: decimal;
  color: #a0aec0;
}
.raffle__item {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}
.raffle__item:last-child {
  margin-bottom: 0;
}
.raffle__note {
  margin-top: 2rem;
  font-size: 1rem;
  color: #a0aec0;
  font-style: italic;
}

.conditions {
  position: relative;
  padding: 4rem 0;
  background-color: #0a0e1a;
  overflow: hidden;
}
.conditions__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.conditions__bg-overlay::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.14) 0%, rgba(0, 212, 255, 0.07) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: spotMoveReverse 14s ease-in-out infinite, glowPulse 4.8s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.conditions__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 30%;
  left: 12%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.11) 0%, rgba(0, 255, 136, 0.05) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: spotMove 16s ease-in-out infinite, glowPulse 5s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.conditions__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.conditions__bg-particles::before, .conditions__bg-particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  box-shadow: 28% 38% 0 0 rgba(0, 212, 255, 0.3), 48% 24% 0 0 rgba(0, 255, 136, 0.3), 68% 48% 0 0 rgba(0, 212, 255, 0.2), 88% 34% 0 0 rgba(0, 255, 136, 0.2);
  animation: particlesFloat 17s linear infinite;
}
.conditions__bg-particles::before {
  top: 25%;
  right: 12%;
  animation-delay: 0s;
}
.conditions__bg-particles::after {
  bottom: 25%;
  left: 14%;
  background: rgba(0, 255, 136, 0.4);
  animation-delay: 8.5s;
  animation-duration: 20s;
}
.conditions__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}
.conditions__item {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #a0aec0;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(10, 14, 26, 0.6);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: start;
}
@media screen and (max-width: 768px) {
  .conditions__item {
    font-size: 1rem;
  }
}
.conditions__item:last-child {
  margin-bottom: 0;
}
.conditions__item strong {
  color: #00ff88;
  font-weight: 600;
}

.cta {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  overflow: hidden;
}
.cta__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta__bg-overlay::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.18) 0%, rgba(0, 255, 136, 0.09) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(58px);
  animation: spotMove 12.5s ease-in-out infinite, glowPulse 3.5s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.cta__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.16) 0%, rgba(0, 212, 255, 0.08) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(58px);
  animation: spotMoveReverse 15.5s ease-in-out infinite, glowPulse 4.2s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.cta__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta__bg-particles::before, .cta__bg-particles::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(0, 255, 136, 0.5);
  border-radius: 50%;
  box-shadow: 29% 39% 0 0 rgba(0, 255, 136, 0.4), 49% 26% 0 0 rgba(0, 212, 255, 0.4), 69% 49% 0 0 rgba(0, 255, 136, 0.3), 89% 36% 0 0 rgba(0, 212, 255, 0.3);
  animation: particlesFloat 15s linear infinite;
}
.cta__bg-particles::before {
  top: 15%;
  left: 25%;
  animation-delay: 0s;
}
.cta__bg-particles::after {
  bottom: 15%;
  right: 25%;
  background: rgba(0, 212, 255, 0.5);
  animation-delay: 7.5s;
  animation-duration: 18s;
}
.cta__bg-waves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta__bg-waves::before, .cta__bg-waves::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200px;
  background: radial-gradient(ellipse 100% 50% at 50% 0%, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  animation: waveFlow 8s ease-in-out infinite;
}
.cta__bg-waves::before {
  top: 0;
  left: -50%;
  animation-delay: 0s;
}
.cta__bg-waves::after {
  bottom: 0;
  right: -50%;
  background: radial-gradient(ellipse 100% 50% at 50% 100%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  animation-delay: 4s;
  animation-duration: 10s;
  animation-direction: reverse;
}
.cta__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.cta__title.animate {
  opacity: 1;
  transform: translateY(0);
}
.cta__subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #00ff88;
  margin-bottom: 2rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.cta__subtitle.animate {
  opacity: 1;
  transform: translateY(0);
}
.cta__text {
  font-size: 1.125rem;
  color: #a0aec0;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.cta__text.animate {
  opacity: 1;
  transform: translateY(0);
}
.cta__form {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
  max-width: 600px;
  width: 100%;
}
.cta__form.animate {
  opacity: 1;
  transform: translateY(0);
}
.cta__form-note {
  font-size: 0.875rem;
  color: #718096;
  margin-top: 1rem;
}
.cta__urgency {
  font-size: 1rem;
  color: #00ff88;
  font-weight: 600;
}

.form-group {
  margin-bottom: 2rem;
}
.form-group--vk-link {
  animation: slideDown 0.3s ease;
}
.form-group--checkbox {
  margin-bottom: 2rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #718096;
  line-height: 1.4;
}

.form-input {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background-color: #1a1f2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #ffffff;
  font-family: inherit;
  transition: all 0.3s ease;
}
.form-input:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}
.form-input::placeholder {
  color: #718096;
}
.form-input select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff88' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}
.form-input option {
  background-color: #1a1f2e;
  color: #ffffff;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}
.form-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form-checkbox input[type=checkbox]:checked ~ .form-checkbox__checkmark {
  background-color: #00ff88;
  border-color: #00ff88;
}
.form-checkbox input[type=checkbox]:checked ~ .form-checkbox__checkmark::after {
  display: block;
}
.form-checkbox input[type=checkbox]:focus ~ .form-checkbox__checkmark {
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}
.form-checkbox input[type=checkbox]:required:invalid ~ .form-checkbox__text {
  color: #ffffff;
}
.form-checkbox__checkmark {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  background-color: #1a1f2e;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.form-checkbox__checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #0a0e1a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-checkbox__text {
  color: #a0aec0;
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
}
.form-checkbox__link {
  color: #00ff88;
  text-decoration: none;
  transition: color 0.3s ease;
}
.form-checkbox__link:hover {
  color: #00d4ff;
  text-decoration: underline;
}

.footer {
  position: relative;
  padding: 4rem 0 2rem;
  background-color: #111827;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.footer__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer__bg-overlay::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, rgba(0, 255, 136, 0.06) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(48px);
  animation: spotMove 15s ease-in-out infinite, glowPulse 5s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.footer__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 20%;
  right: 12%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(48px);
  animation: spotMoveReverse 17s ease-in-out infinite, glowPulse 5.5s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.footer__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer__bg-particles::before, .footer__bg-particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 255, 136, 0.35);
  border-radius: 50%;
  box-shadow: 30% 40% 0 0 rgba(0, 255, 136, 0.25), 50% 25% 0 0 rgba(0, 212, 255, 0.25), 70% 50% 0 0 rgba(0, 255, 136, 0.15), 90% 35% 0 0 rgba(0, 212, 255, 0.15);
  animation: particlesFloat 20s linear infinite;
}
.footer__bg-particles::before {
  top: 18%;
  left: 14%;
  animation-delay: 0s;
}
.footer__bg-particles::after {
  bottom: 18%;
  right: 16%;
  background: rgba(0, 212, 255, 0.35);
  animation-delay: 10s;
  animation-duration: 23s;
}
.footer__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.footer__description {
  color: #a0aec0;
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 300px;
}
.footer__title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.footer__social i {
  font-size: 2rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #a0aec0;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}
.footer__social-link:hover {
  color: #00ff88;
  background-color: rgba(0, 255, 136, 0.1);
  transform: translateY(-2px);
}
.footer__note {
  color: #718096;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.footer__link {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #00ff88;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copyright {
  color: #718096;
  font-size: 0.875rem;
}
.footer__legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__legal-link {
  color: #718096;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer__legal-link:hover {
  color: #a0aec0;
}

.developer-credit {
  position: relative;
  padding: 1rem 0;
  background-color: #0a0e1a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.developer-credit__text {
  text-align: center;
  color: #718096;
  font-size: 0.875rem;
  margin: 0;
}
.developer-credit__link {
  color: #00ff88;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}
.developer-credit__link:hover {
  color: #00d4ff;
  text-decoration: underline;
}

.legal-page {
  position: relative;
  min-height: 100vh;
  padding: calc(80px + 6rem) 0 6rem;
  background-color: #0a0e1a;
  overflow: hidden;
}
.legal-page__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.legal-page__bg-overlay::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, rgba(0, 255, 136, 0.06) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(51px);
  animation: spotMove 15s ease-in-out infinite, glowPulse 4.9s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.legal-page__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 12%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(51px);
  animation: spotMoveReverse 17s ease-in-out infinite, glowPulse 5.1s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.legal-page__bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.legal-page__bg-particles::before, .legal-page__bg-particles::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  box-shadow: 26% 36% 0 0 rgba(0, 255, 136, 0.2), 46% 22% 0 0 rgba(0, 212, 255, 0.2), 66% 46% 0 0 rgba(0, 255, 136, 0.15), 86% 32% 0 0 rgba(0, 212, 255, 0.15);
  animation: particlesFloat 18s linear infinite;
}
.legal-page__bg-particles::before {
  top: 20%;
  right: 13%;
  animation-delay: 0s;
}
.legal-page__bg-particles::after {
  bottom: 20%;
  left: 16%;
  background: rgba(0, 212, 255, 0.3);
  animation-delay: 9s;
  animation-duration: 21s;
}
.legal-page__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  background-color: #111827;
  padding: 4rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-page__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.legal-page__date {
  text-align: center;
  color: #718096;
  font-size: 0.875rem;
  margin-bottom: 4rem;
}
.legal-page__section {
  margin-bottom: 4rem;
}
.legal-page__section:last-child {
  margin-bottom: 0;
}
.legal-page__section-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #00ff88;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.legal-page__text {
  color: #a0aec0;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-page__text:last-child {
  margin-bottom: 0;
}
.legal-page__list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
  color: #a0aec0;
}
.legal-page__list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1.8;
  font-size: 1rem;
}
.legal-page__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: 600;
}
.legal-page__list li:last-child {
  margin-bottom: 0;
}
.legal-page__link {
  color: #00ff88;
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal-page__link:hover {
  color: #00d4ff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .header__nav {
    display: none;
  }
  .header__nav--active {
    display: flex;
    height: fit-content;
  }
  .header__burger {
    display: flex;
  }
  .hero {
    min-height: auto;
    padding: calc(70px + 4rem) 0 4rem;
  }
  .hero__bonus {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }
  .hero__info {
    padding: 1rem;
  }
  .hero__info-item {
    align-items: flex-start;
  }
  .hero__cta {
    flex-direction: column;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .hero__trust {
    flex-direction: column;
    align-items: center;
  }
  .hero__visual {
    display: none;
  }
  .pain__grid {
    grid-template-columns: 1fr;
  }
  .for-whom__grid {
    grid-template-columns: 1fr;
  }
  .proof__grid {
    grid-template-columns: 1fr;
  }
  .webinar-reviews__card {
    padding: 2rem;
    min-height: 180px;
  }
  .webinar-reviews__text {
    font-size: 1.125rem;
  }
  .webinar-reviews__author {
    font-size: 1rem;
  }
  .agenda__item {
    flex-direction: column;
    gap: 1rem;
  }
  .agenda__item-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .footer__content {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .legal-page {
    padding: calc(70px + 2rem) 0 2rem;
  }
  .legal-page__content {
    padding: 2rem;
  }
  .legal-page__title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .legal-page__section-title {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }
  .legal-page__text {
    font-size: 0.9375rem;
  }
  .legal-page__list li {
    font-size: 0.9375rem;
  }
  .pain__bg-overlay::before, .pain__bg-overlay::after,
  .why__bg-overlay::before,
  .why__bg-overlay::after,
  .bridge__bg-overlay::before,
  .bridge__bg-overlay::after,
  .webinar__bg-overlay::before,
  .webinar__bg-overlay::after,
  .agenda__bg-overlay::before,
  .agenda__bg-overlay::after,
  .for-whom__bg-overlay::before,
  .for-whom__bg-overlay::after,
  .webinar-reviews__bg-overlay::before,
  .webinar-reviews__bg-overlay::after,
  .author__bg-overlay::before,
  .author__bg-overlay::after,
  .proof__bg-overlay::before,
  .proof__bg-overlay::after,
  .raffle__bg-overlay::before,
  .raffle__bg-overlay::after,
  .conditions__bg-overlay::before,
  .conditions__bg-overlay::after,
  .cta__bg-overlay::before,
  .cta__bg-overlay::after,
  .footer__bg-overlay::before,
  .footer__bg-overlay::after,
  .legal-page__bg-overlay::before,
  .legal-page__bg-overlay::after {
    opacity: 0.5;
    filter: blur(30px);
  }
  .pain__bg-particles,
  .why__bg-particles,
  .bridge__bg-particles,
  .webinar__bg-particles,
  .agenda__bg-particles,
  .for-whom__bg-particles,
  .webinar-reviews__bg-particles,
  .author__bg-particles,
  .proof__bg-particles,
  .raffle__bg-particles,
  .conditions__bg-particles,
  .cta__bg-particles,
  .footer__bg-particles,
  .legal-page__bg-particles {
    opacity: 0.6;
  }
  .pain__bg-grid {
    opacity: 0.1;
  }
  .bridge__bg-shapes,
  .agenda__bg-shapes {
    opacity: 0.5;
  }
  .bridge__bg-shapes::before, .bridge__bg-shapes::after,
  .agenda__bg-shapes::before,
  .agenda__bg-shapes::after {
    width: 60px;
    height: 60px;
  }
  .cta__form .form-checkbox__text {
    font-size: 0.8125rem;
  }
  .cta__bg-waves {
    opacity: 0.6;
  }
  .cta__bg-waves::before, .cta__bg-waves::after {
    height: 100px;
  }
}
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
  }
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  min-width: 320px;
  max-width: 400px;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .toast {
    min-width: auto;
    max-width: 100%;
    transform: translateX(100vw);
  }
}
.toast::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: currentColor;
}
.toast--show {
  opacity: 1;
  transform: translateX(0);
}
.toast--success {
  color: #00ff88;
  border-color: rgba(0, 255, 136, 0.3);
}
.toast--success::before {
  background: #00ff88;
}
.toast--error {
  color: #ff4444;
  border-color: rgba(255, 68, 68, 0.3);
}
.toast--error::before {
  background: #ff4444;
}
.toast--warning {
  color: #ffaa00;
  border-color: rgba(255, 170, 0, 0.3);
}
.toast--warning::before {
  background: #ffaa00;
}
.toast--info {
  color: #00d4ff;
  border-color: rgba(0, 212, 255, 0.3);
}
.toast--info::before {
  background: #00d4ff;
}
.toast__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: currentColor;
}
.toast__message {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #ffffff;
}
.toast__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #a0aec0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  border-radius: 4px;
}
.toast__close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.toast__close:active {
  transform: scale(0.95);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-overlay--active {
  opacity: 1;
  visibility: visible;
}

.popup {
  position: relative;
  background: #111827;
  border-radius: 1rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.popup--active {
  transform: scale(1) translateY(0);
}
.popup__content {
  position: relative;
  padding: 4rem;
}
.popup__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 0.5rem;
  z-index: 10;
}
.popup__close i {
  font-size: 1.5rem;
  line-height: 1;
}
.popup__close svg {
  width: 24px;
  height: 24px;
}
.popup__close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}
.popup__close:active {
  transform: rotate(90deg) scale(0.95);
}
.popup__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.popup__subtitle {
  font-size: 1rem;
  color: #a0aec0;
  margin-bottom: 4rem;
  line-height: 1.5;
}
.popup__form .form-group {
  margin-bottom: 2rem;
}
.popup__form .form-input {
  width: 100%;
}
.popup__form .form-checkbox__text {
  font-size: 0.8125rem;
}
.popup__form-note {
  font-size: 0.875rem;
  color: #718096;
  text-align: center;
  margin-top: 2rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .popup {
    max-width: 100%;
    border-radius: 1rem 1rem 0 0;
    max-height: 95vh;
  }
  .popup__content {
    padding: 4rem;
  }
  .popup__title {
    font-size: 1.5rem;
    padding-right: 6rem;
  }
}/*# sourceMappingURL=main.css.map */