.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.hero__title {
  font-size: var(--fs-6xl);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero__title-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title-accent {
  color: var(--secondary-color);
}

.hero__description {
  font-size: var(--fs-xl);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
  animation: fadeInUp 1s ease 0.4s both;
}

.hero__buttons {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  animation: fadeInUp 1s ease 0.6s both;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  animation: fadeInUp 1s ease 0.8s both;
}

.hero__stat {
  text-align: center;
  padding: var(--space-1);
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
}

.hero__stat:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.hero__stat-number {
  display: block;
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--primary-color);
  margin-bottom: var(--space-2);
}

.hero__stat-text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  font-weight: var(--fw-medium);
}

.hero__visual {
  position: relative;
  animation: fadeInRight 1s ease 0.4s both;
}

.hero__image-container {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero__image-container:hover .hero__image {
  transform: scale(1.05);
}

.hero__floating-card {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--primary-dark);
  border-radius: var(--radius-xl);
  color: var(--primary-dark);
  font-weight: var(--fw-medium);
  animation: float 3s ease-in-out infinite;
}

.hero__floating-card i {
  font-size: var(--fs-xl);
  color: var(--primary-color);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: var(--fs-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  animation: bounce 2s infinite;
}

.hero__scroll-link:hover {
  background: var(--primary-color);
  transform: translateX(-50%) translateY(-5px);
  box-shadow: var(--shadow-glow);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media screen and (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__image {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }

  .hero__title {
    font-size: var(--fs-4xl);
  }

  .hero__description {
    font-size: var(--fs-lg);
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .hero__image {
    height: 300px;
  }

  .hero__floating-card {
    position: static;
    margin-top: var(--space-4);
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .hero__container {
    padding-top: 70px;
  }

  .hero__title {
    font-size: var(--fs-3xl);
  }

  .hero__description {
    font-size: var(--fs-base);
  }

  .hero__buttons .btn {
    width: 100%;
  }
}