#section-2 {
  position: relative;
  background-image:
  /* TOP fade */
    linear-gradient(
      to bottom,
      rgba(9, 36, 75, 1) 0%,
      rgba(9, 36, 75, 0.95) 15%,
      rgba(9, 36, 75, 0.6) 30%,
      rgba(9, 36, 75, 0.2) 45%
    ),
    /* BOTTOM fade */
    linear-gradient(
        to top,
        rgba(9, 36, 75, 1) 0%,
        rgba(9, 36, 75, 0.95) 15%,
        rgba(9, 36, 75, 0.6) 30%,
        rgba(9, 36, 75, 0.2) 45%
      ),
    /* IMAGE */
    url("https://storage.googleapis.com/ppctoda_website/ppctoda_assets/todapalbg2.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  width: 100%;
  min-height: 100vh;

  padding-inline: clamp(16px, 4vw, 32px);
  padding-block: clamp(64px, 12vh, 128px);

  display: flex;
  flex-direction: column;
  gap: clamp(24px, 6vw, 48px);
}

.reviews-footer {
  margin-top: clamp(40px, 8vh, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.reviews-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-stars {
  font-weight: 600;
  color: #facc15;
}

.reviews-cta {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.18);

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.reviews-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.homepage-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 16px 24px;
  background: rgba(9, 36, 75, 0.96);
}

.homepage-footer-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  animation: footerLinkPulse 2.8s ease-in-out infinite;
  transition:
    color 0.2s ease,
    text-shadow 0.2s ease;
}

.homepage-footer-link:hover {
  color: #ffffff;
}

@keyframes footerLinkPulse {
  0% {
    color: rgba(255, 255, 255, 0.66);
    text-shadow: 0 0 0 rgba(0, 123, 255, 0);
  }

  50% {
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 0 14px rgba(0, 123, 255, 0.5);
  }

  100% {
    color: rgba(255, 255, 255, 0.66);
    text-shadow: 0 0 0 rgba(0, 123, 255, 0);
  }
}
