/* =============================================
   NRR — ValueFlex Solutions Banner
============================================= */

.nrr-vflex *,
.nrr-vflex *::before,
.nrr-vflex *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.nrr-vflex {
  font-family: "Poppins", sans-serif;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1a2a3a;
  background-image: url("./images/valueflex-bg.jpg");
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}

/* Overlay */
.nrr-vflex__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 34, 0.55);
}

/* Content */
.nrr-vflex__content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 680px;
}

/* Eyebrow pill */
.nrr-vflex__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 16px 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.nrr-vflex__eyebrow-icon {
  font-size: 15px;
}

/* Title */
.nrr-vflex__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* Subtitle */
.nrr-vflex__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA button — white solid */
.nrr-vflex__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  background: #ffffff;
  color: #0f1721;
  border: 2px solid #ffffff;
  transition: all 0.2s ease;
}

.nrr-vflex__btn:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 640px) {
  .nrr-vflex {
    min-height: 320px;
  }

  .nrr-vflex__content {
    padding: 60px 20px;
  }
}
