/* SMART MZK — Hero Section */

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0f3460 40%, var(--green) 160%);
  display: flex;
  align-items: center;
  padding: 7rem 5rem 3rem;
  position: relative;
  overflow: hidden;
}

/* === Geometric Decorations === */
.hero__geo1 {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border: 3px solid rgba(255, 255, 255, 0.05);
  transform: rotate(15deg);
  animation: float-slow 8s ease-in-out infinite;
  z-index: var(--z-bg);
}

.hero__geo2 {
  position: absolute;
  left: 25%;
  bottom: -30px;
  width: 350px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(92, 176, 51, 0.2), transparent);
  z-index: var(--z-bg);
}

.hero__geo3 {
  position: absolute;
  right: 22%;
  top: 12%;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(92, 176, 51, 0.08);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: var(--z-bg);
}

/* === Ghost Logo === */
.hero__logo-float {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: auto;
  opacity: 0.15;
  z-index: var(--z-bg);
  filter: brightness(1.2);
}

/* === Content === */
.hero__content {
  position: relative;
  z-index: var(--z-content);
  max-width: 600px;
  animation: slideInLeft 1s ease-out forwards;
}

.hero__title {
  font-size: 5rem;
  font-weight: var(--font-weight-black);
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero__title-accent {
  color: var(--green);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero__cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--green);
  color: var(--text-primary);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(92, 176, 51, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(92, 176, 51, 0.4);
}

.hero__cta:active {
  transform: translateY(0);
}

.hero__brand-tag {
  font-size: 0.7rem;
  color: var(--text-faint);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 3rem;
}

/* === Animations === */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.1;
  }
}

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

@keyframes float-slow {
  0%, 100% {
    transform: rotate(15deg) translateY(0);
  }
  50% {
    transform: rotate(15deg) translateY(-15px);
  }
}

.hero__logo-float {
  animation: fadeIn 2s ease-out 0.5s forwards;
  opacity: 0;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero {
    padding: 7rem 3rem 3rem;
  }

  .hero__title {
    font-size: 4rem;
  }

  .hero__logo-float {
    width: 250px;
    height: 250px;
    right: 2%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 2rem 3rem;
    align-items: flex-start;
    min-height: auto;
  }

  .hero__content {
    margin-top: 3rem;
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .hero__logo-float {
    display: none;
  }

  .hero__geo1 {
    display: none;
  }

  .hero__geo2 {
    display: none;
  }

  .hero__geo3 {
    width: 60px;
    height: 60px;
    right: auto;
    left: -30px;
    top: 30%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5rem 1.5rem 2rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__sub {
    font-size: 0.95rem;
  }

  .hero__cta {
    font-size: 0.75rem;
    padding: 0.9rem 2rem;
  }

  .hero__brand-tag {
    font-size: 0.6rem;
    margin-top: 2rem;
  }

  .hero__geo3 {
    display: none;
  }
}
