.hero {
  background: linear-gradient(135deg, #0066cc 0%, #3385d6 50%, #66a3e0 100%);
  color: var(--white);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 800px;
  z-index: 1;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.hero__logo {
  margin-bottom: 1rem;
  animation: heroLogoFloat 3s ease-in-out infinite;
}

.hero__logo-img {
  width: 6rem;
  height: 6rem;
  border-radius: 20px;
  filter: drop-shadow(0 8px 25px rgba(0,0,0,0.2));
  transition: all 0.3s ease;
}

.hero__logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 35px rgba(0,0,0,0.3));
}

@keyframes heroLogoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.hero__subtitle {
  font-size: 1.35rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  max-width: 700px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.1);
}

.hero__btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
}

.hero__btn-group .btn {
  min-width: 200px;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero__btn-group .btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero__image {
  display: none;
}

@media (max-width: 1024px) {
  .hero__title { 
    font-size: 2.5rem; 
  }
  .hero__subtitle {
    font-size: 1.2rem;
  }
  .hero { 
    flex-direction: column; 
    align-items: flex-start; 
    min-height: 80vh;
  }
  .hero__logo-img {
    width: 5rem;
    height: 5rem;
  }
}

@media (max-width: 768px) {
  .hero { 
    padding-top: 5rem; 
    padding-bottom: 3rem;
    min-height: 75vh;
  }
  .hero__content { 
    max-width: 100%;
    gap: 2rem;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
  }
  .hero__btn-group .btn { 
    width: 100%;
    min-width: auto;
    padding: 0.9rem 2rem;
  }
  .hero__logo-img {
    width: 4rem;
    height: 4rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
    min-height: 70vh;
  }
  .hero__content {
    gap: 1.5rem;
  }
  .hero__title {
    font-size: 1.75rem;
  }
  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }
  .hero__logo-img {
    width: 3.5rem;
    height: 3.5rem;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-top: 6rem;
  }
  .hero__logo-img {
    width: 3rem;
    height: 3rem;
  }
}
