.banner-section {
  width: 100%;
  padding: 0;
  background: transparent;
}

.banner-section img {
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  object-fit: cover;
  object-position: center;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 5rem 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.signal-strip div {
  position: relative;
  min-height: 155px;
  padding: 1.35rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 232, 0.88));
  border: 1px solid rgba(23, 76, 45, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(23, 76, 45, 0.08);
}

.signal-strip div::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 52px;
  height: 52px;
  background: rgba(106, 164, 58, 0.13);
  border-radius: 50%;
}

.signal-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 50%;
  font-weight: 900;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  margin-bottom: 0.35rem;
  color: var(--green-dark);
  font-size: 1.12rem;
}

.signal-strip span {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1050px) {
  .banner-section {
    padding-left: 0;
    padding-right: 0;
  }

  .signal-strip {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

@media (max-width: 760px) {
  .banner-section {
    padding-top: 0;
  }
  .signal-strip {
    grid-template-columns: 1fr;
    margin: 0 1rem;
  }
}
