.hero {
  position: relative;
  background: url('../images/bannerbg.png') no-repeat right center;
  overflow: hidden;
}

.bannerbg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}

.hero-content {
  max-width: 530px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 122px 0 100px 0;
  color: #005eff;
}

@media (max-width: 1439px) {
  .hero-content {
    margin-top: 64px;
  }
}

.hero-logos {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 12px;
}

.hero-hp-logo {
  height: 80px;
  width: auto;
}

.hero-brand-text {
  display: flex;
  flex-direction: column;
  margin-right: 18px;
}

.hero-title-main {
  font-family: 'Forma DJR Display Medium', 'Inter', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
}

.hero-season {
  font-size: 0.9em;
  font-weight: 400;
  color: #222;
}

.hero-brand-desc {
  font-size: 0.95rem;
  color: #222;
  margin-top: 2px;
  line-height: 1.2;
}

.hero-intel-logo {
  height: 38px;
  width: auto;
  margin-left: 12px;
}

.hero-intel-desc {
  font-size: 0.95rem;
  color: #222;
  margin-left: 8px;
  margin-top: 6px;
  line-height: 1.2;
}

.hero-headline {
  font-family: 'Forma DJR Display Medium', 'Inter', Arial, sans-serif;
  font-size: 4.6rem;
  font-weight: 100;
  line-height: 1.1;
  margin: 0 0 8px 0;
  color: #005eff;
}

.hero-highlight {
  color: #005eff;
  font-size: 4.1rem;
  font-weight: 700;
  display: inline-block;
}

.hero-subtext {
  font-family: 'Forma DJR Micro Regular', 'Inter', Arial, sans-serif;
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 0;
}

.hero-link {
  color: #005eff;
  text-decoration: underline;
  font-weight: 500;
}

.hero-cta-btn {
  font-family: 'Forma DJR Micro Regular', 'Inter', Arial, sans-serif;
  display: inline-block;
  margin-top: 18px;
  background: #005eff;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 8px #005eff22;
  transition: background 0.2s, color 0.2s;
  max-width: 250px;
  text-align: center;
}

.hero-cta-btn:hover {
  background: #0033b3;
  color: #fff;
}

/* Tablet screens */
@media (max-width: 1024px) {
  .hero-content {
    margin: 80px 0 60px 0;
    max-width: 100%;
    padding: 0 32px;
  }

  .hero-headline,
  .hero-highlight {
    font-size: 2.8rem;
  }

  .hero-subtext {
    font-size: 1.2rem;
  }

  .hero-cta-btn {
    font-size: 1.1rem;
    padding: 12px 28px;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .hero {
    background: none;
  }

  .bannerbg {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
  }

  .hero-content {
    margin: 10px 0;
    padding: 0 24px;
    gap: 0px;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
  }

  .hero-logos {
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-hp-logo {
    width: 100%;
    height: auto;
  }

  .hero-headline,
  .hero-highlight {
    font-size: 2.8rem;
    line-height: 1.2;
    text-align: center;
    width: 100%;
  }

  .hero-subtext {
    font-size: 1rem;
    text-align: center;
    line-height: 20px;
  }

  .hero-cta-btn {
    font-size: 1.6rem;
    padding: 17px 49px;
    max-width: 100%;
    font-weight: 400;
  }
}