.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem;
  padding-top: 4rem;
  background: var(--neutral-dark);
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.hero-left {
  flex: 1.2;
  max-width: clamp(20rem, 50vw, 35rem);
}

.hero-left h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: var(--fw-black);
  color: var(--neutral-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-left p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  font-weight: var(--fw-regular);
  color: var(--neutral-light);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

.header-cta {
  background: var(--accent-gradient);
  border: none;
  padding: 1.25rem 3rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: var(--fw-bold);
  color: var(--neutral-light);
  border-radius: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  box-shadow: 0 0.5rem 2rem rgba(58, 1, 92, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.header-cta:hover {
  transform: translateY(-0.25rem) scale(1.05);
  box-shadow: 0 1rem 3rem rgba(58, 1, 92, 0.6);
}

.header-cta:hover::before {
  left: 100%;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-img-container {
  width: 100%;
  max-width: clamp(20rem, 40vw, 30rem);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(58, 1, 92, 0.4) 0%, rgba(139, 92, 246, 0.2) 30%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

.hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: 
    drop-shadow(0 0.5rem 2rem rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 2rem rgba(58, 1, 92, 0.8))
    drop-shadow(0 0 1rem rgba(139, 92, 246, 0.6));
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.05) rotate(2deg);
}

@media (max-width: 1024px) {
  .hero-wrapper {
    text-align: center;
    gap: clamp(1.5rem, 4vw, 3rem);
  }

  .hero-left {
    flex: 1;
    max-width: none;
  }

  .hero-right {
    flex: 0.8;
  }
}

@media (max-width: 820px) {
  .hero-section {
    padding: clamp(1rem, 3vw, 2rem);
    padding-top: clamp(3rem, 6vw, 5rem);
    min-height: auto;
  }

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .hero-left {
    order: 1;
    max-width: none;
  }

  .hero-right {
    order: 0;
    margin-bottom: 1rem;
  }

  .hero-img-container {
    max-width: clamp(18rem, 60vw, 25rem);
  }

  .header-cta {
    padding: clamp(1rem, 3vw, 1.25rem) clamp(2rem, 6vw, 3rem);
    width: fit-content;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 1rem;
    padding-top: 6rem;
  }

  .hero-wrapper {
    gap: 2rem;
  }

  .hero-left h1 {
    margin-bottom: 1rem;
  }

  .hero-left p {
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
  }

  .hero-img-container {
    max-width: clamp(15rem, 80vw, 20rem);
  }

  .hero-img-container::before {
    animation-duration: 6s;
  }

  .hero-img {
    filter: 
      drop-shadow(0 0.25rem 1rem rgba(0, 0, 0, 0.3))
      drop-shadow(0 0 1.5rem rgba(58, 1, 92, 0.7))
      drop-shadow(0 0 2rem rgba(139, 92, 246, 0.7))
      brightness(1.3);
  }

  .header-cta {
    font-size: 0.9rem;
    padding: 1rem 2rem;
    letter-spacing: 0.05rem;
  }
}

@media (max-width: 400px) {
  .hero-section {
    padding: 0.75rem;
    padding-top: 5rem;
  }

  .hero-wrapper {
    gap: 1.5rem;
  }

  .hero-img-container {
    max-width: 12rem;
  }

  .hero-img {
    filter: 
      drop-shadow(0 0.25rem 1rem rgba(0, 0, 0, 0.3))
      drop-shadow(0 0 2rem rgba(58, 1, 92, 0.8))
      drop-shadow(0 0 2.5rem rgba(139, 92, 246, 0.8))
      drop-shadow(0 0 1.5rem rgba(255, 255, 255, 0.2))
      brightness(1.4);
  }

  .header-cta {
    width: 90%;
    max-width: 18rem;
  }
}
