/* Start custom CSS */:root {
  --scom-red: #e02228;
  --paysend-purple: #872fff;
  --unionpay-blue: #0060a0;
  --card-radius: 24px;
  --text-main: #0b0b0b;
  --text-muted: #666666;
  --bg-page: #ffffff;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
}

/* SECTION WRAPPER */
.brand-section {
  padding: 40px 16px;
}

.brand-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

/* =========================================
   BASE CARD STYLE (GLASS EFFECT)
   ========================================= */
.brand-card {
  position: relative;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.20);
  transition: 0.18s;
  overflow: hidden;
  cursor: pointer;
}

.brand-card:hover {
  background: rgba(255,255,255,0.18);
  box-shadow: 0 22px 60px rgba(0,0,0,0.26);
}

/* BRAND BORDER COLORS */
.brand-card--paysend { border-color: rgba(135,47,255,0.45); }
.brand-card--mastercard { border-color: rgba(235,0,27,0.45); }
.brand-card--unionpay { border-color: rgba(0,114,188,0.45); }

/* =========================================
   ICON BUBBLE (Apple-style)
   ========================================= */
.brand-card-icon {
  width: 82px;
  height: 50px;
  border-radius: 18px;
  background: white;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: .18s;
}

.brand-card-icon img {
  max-width: 70%;
  max-height: 70%;
}

/* TITLES & TEXT */
.brand-card-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.brand-card-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* =========================================
   BRAND COLOR BACKGROUNDS (GRADIENTS)
   ========================================= */

/* Paysend – blijft paars */
.brand-card--paysend {
  background: linear-gradient(135deg,
      rgba(135,47,255,0.10),
      rgba(135,47,255,0.2)
  );
}

.brand-card--paysend:hover {
  background: linear-gradient(135deg,
      rgba(135,47,255,0.18),
      rgba(135,47,255,0.28)
  );
}

/* ===== NEW: LIGHT GREY / WHITE GRADIENTS ===== */

/* Mastercard */
.brand-card--mastercard {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.60),
      rgba(240, 240, 240, 0.90)
  );
}

/* Mastercard hover */
.brand-card--mastercard:hover {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.80),
      rgba(230, 230, 230, 1)
  );
}

/* UnionPay */
.brand-card--unionpay {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.60),
      rgba(240, 240, 240, 0.90)
  );
}

/* UnionPay hover */
.brand-card--unionpay:hover {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.80),
      rgba(230, 230, 230, 1)
  );
}

/* =========================================
   NO MORE WATERMARK-BACKGROUND IMAGES
   ========================================= */
.brand-card::after { background-image: none !important; }

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 600px) {
  .brand-section {
    padding: 24px 12px 32px;
  }

  .brand-card {
    padding: 20px 18px 22px;
  }

  .brand-card-title {
    font-size: 1rem;
  }

  .brand-card-text {
    font-size: 0.88rem;
  }
}/* End custom CSS */