/* ══════════════════════════════════════════════
   HERO — TWO-COLUMN LAYOUT + RIGHT SIDE LOGO
   Append this block to the end of style.css
══════════════════════════════════════════════ */

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 6rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  min-height: 100dvh;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-logo-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}


.hero-logo-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  height: auto;
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s;
}

.hero-logo-img.logo-revealed {
  opacity: 1;
  transform: translateX(0);
}

.hero-logo-img.logo-revealed {
  animation: logoFloat 6s ease-in-out infinite;
  animation-delay: 1.4s;
}


/* ════════════════════════════════════════
   HERO RESPONSIVE
════════════════════════════════════════ */

/* Tablet landscape */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 2.5rem;
    padding: 7rem 1.5rem 5rem;
  }

  .hero-logo-wrap {
    max-width: 340px;
  }

  .hero-logo-img {
    max-width: 320px;
  }
}

/* Tablet portrait / large mobile */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 8rem 1.5rem 6rem;
    gap: 2rem;
    min-height: 100dvh;
    align-content: center;
  }

  /* Logo above text */
  .hero-logo-side {
    order: -1;
  }

  .hero-logo-wrap {
    max-width: 200px;
    margin: 0 auto;
  }

  .hero-logo-img {
    max-width: 180px;
  }

  .hero-logo-glow {
    display: none;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-inner {
    padding: 7.5rem 1.25rem 5rem;
    gap: 1.5rem;
  }

  .hero-logo-wrap {
    max-width: 150px;
  }

  .hero-logo-img {
    max-width: 140px;
  }
}

/* Very small */
@media (max-width: 360px) {
  .hero-inner {
    padding: 7rem 1rem 4.5rem;
    gap: 1.25rem;
  }

  .hero-logo-wrap {
    max-width: 120px;
  }

  .hero-logo-img {
    max-width: 120px;
  }
}