html,
body {
  overflow-x: hidden !important;
}

.nbm-card {
  max-width: 420px;
  margin: 40px auto;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(160deg,#2ec4b6 0%,#fefefe 100%);
  color:#004040;
  font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;
  box-shadow:0 8px 18px rgba(0,0,0,0.15);
  text-align:center;
}

.nbm-logo {
  width:80px;
  margin-bottom:8px;
}

.nbm-header h2 {
  font-size:1.4rem;
  margin:6px 0 4px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.highlight {
  color:#ff7f50;
  font-weight:700;
}

.nbm-date {
  font-size:0.95rem;
  color:#066;
  margin-bottom:12px;
}

.nbm-card-inner {
  background:#fff;
  border-radius:12px;
  padding:20px;
  margin:18px 0 12px;
  box-shadow:inset 0 0 6px rgba(0,0,0,0.05);
}

.nbm-check {
  font-size:3.2rem;
  margin-bottom:8px;
  color:#00a862;
}

.nbm-tier {
  font-weight:700;
  color:#045a5e;
  font-size:1.2rem;
  margin-bottom:6px;
}

.nbm-expiry,
.nbm-note {
  color:#333;
  font-size:0.95rem;
  margin-bottom:4px;
}

.nbm-qr {
  margin-top:12px;
  width:90px;
  border-radius:8px;
}

.nbm-footer-text {
  font-size:0.9rem;
  color:#333;
  margin-top:8px;
}

/* FULL WIDTH SECTIONS */

.nbm-reasons-section,
.nbm-faq-section {

  background: #000000;

  padding: 90px 70px;

  box-sizing: border-box;
}

.nbm-section-inner {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}

.nbm-section-inner h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 34px;
  line-height: 1.2;
}

/* REASONS */

.nbm-reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.nbm-reason-card {

  min-height: 290px;

  background:
    radial-gradient(circle at top left, rgba(12,186,180,0.22), transparent 38%),
    linear-gradient(135deg, #152f31 0%, #101014 100%);

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

  border-radius: 18px;

  padding: 32px 26px;

  color: #ffffff;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.nbm-reason-card:hover {

  transform: translateY(-5px);

  border-color: rgba(244,162,97,0.65);

  box-shadow: 0 12px 34px rgba(12,186,180,0.22);
}

.nbm-reason-icon {

  width: 66px;
  height: 66px;

  border-radius: 18px;

  background: rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;

  margin-bottom: 32px;
}

.nbm-reason-card h3 {

  color: #ffffff;

  font-size: 22px;
  line-height: 1.25;

  font-weight: 800;

  margin: 0 0 14px;
}

.nbm-reason-card p {

  color: rgba(255,255,255,0.76);

  font-size: 16px;
  line-height: 1.58;

  margin: 0;
}

/* FAQ */

.nbm-faq-section {
  padding-top: 60px;
  min-height: 620px;
}

.nbm-faq-inner {
  max-width: 1120px;
}

.nbm-faq-inner h2 {
  text-align: center;
  margin-bottom: 36px;
}

.nbm-faq-item {

  background: #2d2d2d;

  border-radius: 8px;

  overflow: hidden;

  margin-bottom: 16px;

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

  transition:
    background .25s ease,
    border-color .25s ease;
}

.nbm-faq-item:hover {

  background: #333333;

  border-color: rgba(12,186,180,0.35);
}

.nbm-faq-item summary {

  list-style: none;

  cursor: pointer;

  color: #ffffff;

  font-size: 20px;
  font-weight: 600;

  padding: 24px 32px;

  position: relative;

  user-select: none;
}

.nbm-faq-item summary::-webkit-details-marker {
  display: none;
}

.nbm-faq-item summary::after {

  content: "+";

  position: absolute;

  right: 32px;
  top: 18px;

  color: #ffffff;

  font-size: 34px;
  font-weight: 300;
}

.nbm-faq-item[open] summary::after {

  content: "–";

  color: #f4a261;
}

.nbm-faq-item p {

  color: rgba(255,255,255,0.78);

  font-size: 17px;
  line-height: 1.65;

  padding: 0 32px 26px;

  margin: 0;

  max-width: 900px;
}

/* MOBILE */

@media(max-width:992px) {

  .nbm-reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media(max-width:768px) {

  .nbm-reasons-section,
  .nbm-faq-section {
    padding: 65px 22px;
  }

  .nbm-section-inner h2 {
    font-size: 24px;
  }

  .nbm-reasons-grid {
    grid-template-columns: 1fr;
  }

  .nbm-reason-card {
    min-height: auto;
  }

  .nbm-faq-item summary {

    font-size: 18px;

    padding: 22px 54px 22px 22px;
  }

  .nbm-faq-item summary::after {

    right: 22px;
    top: 17px;
  }

  .nbm-faq-item p {

    font-size: 16px;

    padding: 0 22px 24px;
  }

}