@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);
  }
}
* {
  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: absolute;
    top: 100%;
    left: 0;
    right: 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: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .header__nav--active {
    transform: translateY(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;
}
.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(6px, 6px);
}
.header__burger--active span:nth-child(2) {
  opacity: 0;
}
.header__burger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.container {
  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 {
  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 {
  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--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__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: 800px;
  margin: 0 auto;
}
.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: 0.875rem;
  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 {
  display: block;
  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: 4rem;
  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;
}
.hero__cta {
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out 0.6s;
  animation-fill-mode: both;
}
.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 {
  padding: 6rem 0;
  background-color: #111827;
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.pain__dialogue {
  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 {
  padding: 6rem 0;
}
.why__content {
  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 {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  text-align: center;
}
.bridge__content {
  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 {
  padding: 6rem 0;
  background-color: #111827;
}
.webinar__content {
  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 {
  padding: 6rem 0;
}
.agenda__timeline {
  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 {
  padding: 6rem 0;
  background-color: #111827;
}
.for-whom__grid {
  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 {
  padding: 6rem 0;
}
.author__content {
  max-width: 800px;
  margin: 0 auto;
}
.author__text .section-title {
  text-align: left;
  margin-bottom: 2rem;
}
.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;
}

.proof {
  padding: 6rem 0;
  background-color: #111827;
}
.proof__grid {
  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;
}

.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
}
.cta__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: 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;
}
.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-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;
}

.footer {
  padding: 4rem 0 2rem;
  background-color: #111827;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__content {
  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__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;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .header__nav {
    display: none;
  }
  .header__burger {
    display: flex;
  }
  .hero {
    min-height: auto;
    padding: calc(70px + 4rem) 0 4rem;
  }
  .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;
  }
  .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;
  }
}/*# sourceMappingURL=main.css.map */