.refuel-solar-hero,
.refuel-solar-hero * { box-sizing: border-box; }

.refuel-solar-hero {
  --solar-blue: #073f86;
  --solar-deep: #042650;
  --solar-green: #67d878;
  --solar-orange: #ff7a1a;
  position: relative;
  width: 100%;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: var(--solar-deep);
  font-family: inherit;
  isolation: isolate;
}

.refuel-solar-hero__media,
.refuel-solar-hero__veil,
.refuel-solar-hero__motion {
  position: absolute;
  inset: 0;
}

.refuel-solar-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.015);
  animation: refuel-solar-image-breathe 16s ease-in-out infinite alternate;
}

.refuel-solar-hero__veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,31,68,.98) 0%, rgba(4,40,84,.94) 34%, rgba(4,42,83,.63) 57%, rgba(3,29,61,.18) 82%),
    linear-gradient(0deg, rgba(3,32,68,.64) 0%, transparent 42%),
    radial-gradient(circle at 80% 15%, rgba(255,154,50,.18), transparent 26%);
}

.refuel-solar-hero__motion {
  z-index: 2;
  pointer-events: none;
}

.refuel-solar-hero__orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.refuel-solar-hero__orbit i {
  position: absolute;
  display: block;
  width: 11px;
  height: 11px;
  border: 3px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: var(--solar-orange);
  box-shadow: 0 0 0 9px rgba(255,122,26,.1), 0 0 27px rgba(255,122,26,.58);
}

.refuel-solar-hero__orbit--one {
  top: -290px;
  right: -95px;
  width: 650px;
  height: 650px;
  animation: refuel-solar-spin 24s linear infinite;
}

.refuel-solar-hero__orbit--one i { bottom: 70px; left: 84px; }

.refuel-solar-hero__orbit--two {
  right: 24%;
  bottom: -440px;
  width: 610px;
  height: 610px;
  border-color: rgba(103,216,120,.23);
  animation: refuel-solar-spin 31s linear infinite reverse;
}

.refuel-solar-hero__orbit--two i {
  top: 58px;
  right: 76px;
  background: var(--solar-green);
  box-shadow: 0 0 0 9px rgba(103,216,120,.1), 0 0 27px rgba(103,216,120,.5);
}

.refuel-solar-hero__ray {
  position: absolute;
  top: -25%;
  width: 1px;
  height: 150%;
  opacity: .38;
  background: linear-gradient(transparent, rgba(255,255,255,.24), transparent);
  transform: rotate(17deg);
}

.refuel-solar-hero__ray--one { right: 21%; animation: refuel-solar-ray 8s ease-in-out infinite alternate; }
.refuel-solar-hero__ray--two { right: 37%; animation: refuel-solar-ray 10s 1.2s ease-in-out infinite alternate-reverse; }

.refuel-solar-hero__container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 650px;
  margin: 0 auto;
  padding: 68px 0 82px;
}

.refuel-solar-hero__copy {
  width: min(620px, 56%);
}

.refuel-solar-hero svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.refuel-solar-hero h1 {
  max-width: 610px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 2.6vw, 32px);
  font-weight: 620;
  line-height: 1.14;
  letter-spacing: -.032em;
  text-wrap: balance;
}

.refuel-solar-hero__lead {
  max-width: 590px;
  margin: 21px 0 0;
  color: rgba(240,247,255,.82);
  font-size: 15px;
  line-height: 1.72;
}

.refuel-solar-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 29px;
}

.refuel-solar-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 19px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,.075);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.refuel-solar-hero__button > span {
  display: grid;
  width: 31px;
  height: 31px;
  margin-right: 10px;
  border-radius: 10px;
  place-items: center;
  background: rgba(255,255,255,.09);
}

.refuel-solar-hero__button > span svg { width: 17px; height: 17px; }
.refuel-solar-hero__button > svg { width: 17px; height: 17px; margin-left: 14px; transition: transform .2s ease; }
.refuel-solar-hero__button:hover { color: #fff; transform: translateY(-2px); }
.refuel-solar-hero__button:hover > svg { transform: translateX(4px); }

.refuel-solar-hero__button--primary {
  border-color: var(--solar-green);
  color: #032b55;
  background: var(--solar-green);
  box-shadow: 0 13px 34px rgba(103,216,120,.22);
  animation: refuel-solar-pulse 2.7s ease-in-out infinite;
}

.refuel-solar-hero__button--primary:hover { color: #032b55; background: #79e187; }
.refuel-solar-hero__button--primary > span { background: rgba(3,43,85,.09); }
.refuel-solar-hero__button--secondary:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.13); }

.refuel-solar-hero__button:focus-visible {
  outline: 3px solid rgba(255,122,26,.55);
  outline-offset: 4px;
}

.refuel-solar-hero__assurances {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 31px;
}

.refuel-solar-hero__assurances span {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,.17);
  color: rgba(235,244,253,.78);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.refuel-solar-hero__assurances span:first-child { padding-left: 0; }
.refuel-solar-hero__assurances span:last-child { border-right: 0; }
.refuel-solar-hero__assurances svg { width: 15px; height: 15px; margin-right: 7px; color: var(--solar-green); }

.refuel-solar-hero__signal-card {
  position: absolute;
  right: 3%;
  bottom: 38px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-width: 315px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 17px;
  background: rgba(3,36,77,.78);
  box-shadow: 0 18px 48px rgba(1,25,54,.28);
  backdrop-filter: blur(14px);
}

.refuel-solar-hero__signal-card > span,
.refuel-solar-hero__signal-card > i {
  display: grid;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(103,216,120,.27);
  border-radius: 12px;
  color: var(--solar-green);
  place-items: center;
  background: rgba(103,216,120,.09);
  font-style: normal;
}

.refuel-solar-hero__signal-card > i {
  width: 30px;
  height: 30px;
  border: 0;
  color: var(--solar-orange);
  background: transparent;
  animation: refuel-solar-bolt 1.8s ease-in-out infinite;
}

.refuel-solar-hero__signal-card > i svg { width: 17px; height: 17px; }
.refuel-solar-hero__signal-card > div { display: grid; gap: 2px; padding: 0 12px; }
.refuel-solar-hero__signal-card small { color: rgba(230,240,250,.6); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.refuel-solar-hero__signal-card strong { color: #fff; font-size: 12px; font-weight: 600; }

@keyframes refuel-solar-spin { to { transform: rotate(360deg); } }
@keyframes refuel-solar-ray { from { opacity: .12; transform: translateX(-18px) rotate(17deg); } to { opacity: .46; transform: translateX(22px) rotate(17deg); } }
@keyframes refuel-solar-image-breathe { from { transform: scale(1.015); } to { transform: scale(1.055); } }
@keyframes refuel-solar-bolt { 0%,100% { opacity: .55; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.1); } }
@keyframes refuel-solar-pulse { 0%,100% { box-shadow: 0 13px 34px rgba(103,216,120,.19), 0 0 0 0 rgba(103,216,120,.25); } 50% { box-shadow: 0 15px 38px rgba(103,216,120,.27), 0 0 0 8px rgba(103,216,120,0); } }

@media (max-width: 900px) {
  .refuel-solar-hero__copy { width: min(610px, 68%); }
  .refuel-solar-hero__signal-card { right: 24px; }
}

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

  .refuel-solar-hero__media img {
    object-position: 67% center;
    transform: scale(1.03);
  }

  .refuel-solar-hero__veil {
    background:
      linear-gradient(180deg, rgba(3,31,68,.97) 0%, rgba(4,39,81,.91) 48%, rgba(4,35,73,.62) 74%, rgba(3,28,59,.82) 100%),
      radial-gradient(circle at 75% 63%, rgba(255,154,50,.13), transparent 30%);
  }

  .refuel-solar-hero__container {
    align-items: flex-start;
    width: calc(100% - 24px);
    min-height: 580px;
    padding: 70px 0 78px;
  }

  .refuel-solar-hero__copy { width: 100%; }
  .refuel-solar-hero h1 {
    max-width: 350px;
    font-size: clamp(24px, 6.7vw, 26px);
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: -.032em;
  }

  .refuel-solar-hero__lead {
    max-width: 354px;
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.62;
  }

  .refuel-solar-hero__actions {
    display: grid;
    gap: 9px;
    margin-top: 22px;
  }

  .refuel-solar-hero__button {
    width: 100%;
    min-height: 53px;
    padding: 0 15px;
  }

  .refuel-solar-hero__button strong { flex: 1; text-align: center; }

  .refuel-solar-hero__assurances {
    position: absolute;
    right: 0;
    bottom: 13px;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 12px 7px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 15px;
    background: rgba(3,34,72,.76);
    backdrop-filter: blur(12px);
  }

  .refuel-solar-hero__assurances span {
    justify-content: center;
    min-width: 0;
    padding: 0 6px;
    font-size: 8px;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }

  .refuel-solar-hero__assurances svg { display: none; }
  .refuel-solar-hero__signal-card { display: none; }
  .refuel-solar-hero__orbit--one { top: 270px; right: -350px; }
  .refuel-solar-hero__orbit--two { right: 23%; bottom: -490px; }
  .refuel-solar-hero__ray--one { right: 17%; }
  .refuel-solar-hero__ray--two { right: 48%; }
}

@media (prefers-reduced-motion: reduce) {
  .refuel-solar-hero *,
  .refuel-solar-hero *::before,
  .refuel-solar-hero *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
