.product-offerings-section {
  /* background intentionally left unset to allow Tailwind classes to control it */
}

.product-offerings-title {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.product-card {
  border-radius: 28px;
  /* background intentionally left unset to allow Tailwind classes to control it */
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  position: relative;
  width: 260px;
  height: 260px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.15s;
}
.product-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.product-card-arrow {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.product-card-title {
  color: #111;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.product-card-desc {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}
.product-arrow-btn {
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: border 0.2s;
}
.product-arrow-btn:hover {
  border: 1.5px solid #fff;
}
@media (max-width: 900px) {
  .product-card, .product-card-arrow {
    width: 200px;
    height: auto;
    min-height: 220px;
  }
}
@media (max-width: 600px) {
  .product-card {
    width: min(100%, 320px);
    height: auto;
    min-height: 260px;
  }
  .product-card-arrow {
    width: 40px;
    height: 40px;
  }
  .fintech-card {
    width: min(100%, 320px);
    height: auto;
    min-height: 260px;
  }
}

.fintech-card {
  width: 260px;
  height: 260px;
  border-radius: 28px;
  position: relative;
  /* Notch just slightly larger than the white circle */
  -webkit-mask-image: radial-gradient(circle 32px at 100% 0, transparent 31px, black 33px);
  mask-image: radial-gradient(circle 32px at 100% 0, transparent 31px, black 33px);
  overflow: visible; /* allow notch arrow to overflow */
  /* background intentionally left unset to allow Tailwind classes to control it */
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
  transition: box-shadow 0.25s, transform 0.22s;
}

.fintech-card:hover {
  box-shadow: 0 20px 48px 0 rgba(0,0,0,0.28), 0 6px 18px 0 rgba(0,0,0,0.18);
  transform: translateY(-6px) scale(1.045);
}

.fintech-card-arrow {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 10;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #111 !important;
  pointer-events: none;
}

.fintech-card-arrow svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

.fintech-card:hover .fintech-card-arrow {
  box-shadow: 0 12px 32px rgba(0,0,0,0.22), 0 6px 18px rgba(0,0,0,0.18);
  transform: scale(1.12);
}

.fintech-card-notch-arrow-fixed {
  position: absolute;
  /* Center the circle in the notch */
  top: -16px;
  right: -16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;          /* ✅ ADD THIS */
  border-radius: 50%;        /* ✅ MAKE IT CIRCLE */
  box-shadow: 0 4px 12px rgba(0,0,0,0.12); /* optional but matches UI */

  z-index: 20;
}
.fintech-card-notch-arrow-fixed svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
  color: #111 !important;
  fill: none !important;
  display: block;
}

/* Large watermark icon — always black (card is #F1EBEB light / white dark) */
.product-card-watermark {
  color: #000 !important;
  z-index: 0;
}

.product-card-watermark svg {
  width: 6rem;
  height: 6rem;
  stroke: currentColor;
  color: #000 !important;
}

.product-card .product-card__title,
.product-card .product-card__desc {
  color: #000;
}

.dark .product-card .product-card__title,
.dark .product-card .product-card__desc {
  color: #000;
}
