.sbf-modern-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sbf-modern-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 60px;
  padding: 0 28px;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg,
      rgba(0, 186, 163, 1) 0%,
      rgba(0, 199, 176, 1) 50%,
      rgba(0, 227, 200, 1) 100%);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.26),
    0 6px 16px rgba(0, 186, 163, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
  will-change: transform;
}

.sbf-modern-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transition: left 0.7s ease;
}

.sbf-modern-btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0.04) 22%,
      rgba(255, 255, 255, 0.02) 60%,
      rgba(255, 255, 255, 0.08) 100%);
  pointer-events: none;
}

.sbf-modern-btn:hover::before {
  left: 120%;
}

.sbf-modern-btn:hover {
  transform: translateY(-4px) scale(1.01);
  filter: saturate(1.05);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.32),
    0 10px 28px rgba(0, 186, 163, 0.38),
    0 0 20px rgba(0, 227, 200, 0.24);
}

.sbf-modern-btn:active {
  transform: translateY(-1px) scale(0.97);
}

.sbf-modern-btn .btn-text {
  position: relative;
  z-index: 2;
  letter-spacing: 0.2px;
}

@media (max-width: 480px) {
  .sbf-modern-btn {
    width: 200px;
    height: 56px;
    font-size: 15px;
    border-radius: 14px;
  }
}