/* Hero Banner (PAYG)
   Brand: $darkblue #023769 · $blue #03a1e2 · Poppins
   Breakpoints follow theme: 991.98px (tablet) / 767.98px (mobile) */

.hero-banner-payg {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  background: #023769;
}

/* Full-bleed background image */
.hero-banner-payg .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-banner-payg .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Brand gradient overlay for text legibility */
.hero-banner-payg .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(2, 55, 105, 0.92) 0%,
    rgba(2, 55, 105, 0.6) 28%,
    rgba(2, 55, 105, 0) 58%
  );
}

.hero-banner-payg .content-area {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
}

.hero-banner-payg .hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Text column */
.hero-banner-payg .hero-text {
  flex: 1 1 auto;
  max-width: 620px;
  color: #fff;
}
.hero-banner-payg .hero-text h1 {
  color: #fff;
  margin-bottom: 20px;
}
.hero-banner-payg .hero-text h1 .blue {
  display: block;
  color: #03a1e2;
}
.hero-banner-payg .hero-subheading {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.hero-banner-payg .hero-body,
.hero-banner-payg .hero-body p {
  font-size: 16px;
  line-height: 1.65;
  color: #fff;
}
.hero-banner-payg .hero-body {
  margin-bottom: 32px;
}
.hero-banner-payg .hero-body p:last-child {
  margin-bottom: 0;
}

/* Buttons — primary uses the theme default; secondary is a white outline for contrast on the photo */
.hero-banner-payg .button-area .btn {
  margin-right: 16px;
  margin-bottom: 10px;
}
.hero-banner-payg .button-area .btn:last-child {
  margin-right: 0;
}
.hero-banner-payg .button-area .btn-primary {
  background: #03a1e2;
  border-color: #03a1e2;
  color: #fff;
}
.hero-banner-payg .button-area .btn-primary:hover,
.hero-banner-payg .button-area .btn-primary:focus {
  background: #3ac6ff;
  border-color: #3ac6ff;
  color: #fff;
}
.hero-banner-payg .button-area .btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.hero-banner-payg .button-area .btn-secondary:hover,
.hero-banner-payg .button-area .btn-secondary:focus {
  background: #fff;
  border-color: #fff;
  color: #023769;
}

/* Floating info cards */
.hero-banner-payg .hero-cards {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-banner-payg .hero-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.hero-banner-payg .hero-card-icon {
  flex: 0 0 auto;
}
.hero-banner-payg .hero-card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.hero-banner-payg .hero-card-body h3 {
  font-size: 17px;
  line-height: 1.3;
  color: #023769;
  margin: 0 0 4px;
}
.hero-banner-payg .hero-card-body p {
  font-size: 14px;
  line-height: 1.5;
  color: #023769;
  margin: 0;
}

/* Tablet */
@media (max-width: 991.98px) {
  .hero-banner-payg .hero-cards {
    flex-basis: 300px;
  }
  .hero-banner-payg .content-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  /* No left/right space here, so use a flat, lighter blue wash instead of the gradient */
  .hero-banner-payg .hero-overlay {
    background: rgba(2, 55, 105, 0.72);
  }
}

/* Mobile — stack cards below the hero text */
@media (max-width: 767.98px) {
  .hero-banner-payg .content-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .hero-banner-payg .hero-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }
  .hero-banner-payg .hero-text {
    max-width: 100%;
  }
  .hero-banner-payg .hero-subheading {
    font-size: 18px;
  }
  .hero-banner-payg .hero-cards {
    flex-basis: auto;
    width: 100%;
  }
}
