/* ===== Solar Hero Banner ===== */
.solar-hero {
  --sh-navy: #0b1f33;
  --sh-deep: #061525;
  --sh-solar: #2db84b;
  --sh-amber: #f0a202;
  --sh-mist: rgba(232, 238, 244, 0.78);
  --sh-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  font-family: "Manrope", sans-serif;
  background: #061525;
}

.solar-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.solar-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  transform: scale(1.04);
  animation: solarHeroKen 18s ease-in-out infinite alternate;
}

.solar-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 21, 37, 0.96) 0%, rgba(6, 21, 37, 0.82) 42%, rgba(6, 21, 37, 0.35) 68%, rgba(10, 42, 28, 0.45) 100%),
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(45, 184, 75, 0.22), transparent 60%);
  pointer-events: none;
}

.solar-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(7rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 5.5rem);
}

.solar-hero__copy {
  max-width: 36rem;
}

.solar-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  font-family: "Lexend Deca", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7be08f;
}

.solar-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sh-solar), var(--sh-amber));
}

.solar-hero__title {
  margin: 0 0 1rem;
  font-family: "Lexend Deca", sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.solar-hero__title em {
  font-style: normal;
  background: linear-gradient(105deg, #7be08f 0%, var(--sh-solar) 45%, var(--sh-amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.solar-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
  color: var(--sh-mist);
  font-weight: 500;
}

.solar-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1.75rem;
}

.solar-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-family: "Lexend Deca", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.3s var(--sh-ease), box-shadow 0.3s var(--sh-ease);
}

.solar-hero__btn:hover {
  transform: translateY(-2px);
}

.solar-hero__btn--primary {
  background: linear-gradient(135deg, var(--sh-solar) 0%, #1f9a3a 100%);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(45, 184, 75, 0.3);
}

.solar-hero__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.solar-hero__btn--ghost:hover {
  border-color: rgba(45, 184, 75, 0.55);
  background: rgba(45, 184, 75, 0.12);
}

.solar-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--sh-mist);
  font-size: 0.88rem;
  font-weight: 600;
}

.solar-hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.solar-hero__meta i {
  color: var(--sh-solar);
  font-size: 0.85rem;
}

@keyframes solarHeroKen {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, 0, 0); }
}

@media (max-width: 767px) {
  .solar-hero {
    min-height: auto;
  }

  .solar-hero__media img {
    object-position: 70% center;
    animation: none;
    transform: scale(1.08);
  }

  .solar-hero__shade {
    background:
      linear-gradient(180deg, rgba(6, 21, 37, 0.55) 0%, rgba(6, 21, 37, 0.92) 48%, rgba(6, 21, 37, 0.96) 100%),
      radial-gradient(ellipse 70% 50% at 50% 0%, rgba(45, 184, 75, 0.18), transparent 60%);
  }

  .solar-hero__inner {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }
}
