/* ---------- SUPPORT SECTION (minimal · WhatsApp) ---------- */
.oc-support-section {
  padding: 96px 32px;
}

.oc-support-wrap {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.oc-support-copy h2 {
  margin: 18px 0 18px;
}

.oc-support-copy .oc-body {
  margin-left: auto;
  margin-right: auto;
}

.oc-support-cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(37,211,102,0.16) 0%, rgba(37,211,102,0.05) 100%);
  border: 1px solid rgba(37,211,102,0.35);
  text-decoration: none;
  transition: all 0.3s var(--oc-ease);
  position: relative;
  overflow: hidden;
}
.oc-support-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(37,211,102,0.6) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.oc-support-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.20);
}
.oc-support-cta:hover::before { opacity: 1; }

.oc-support-cta-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 24px rgba(37,211,102,0.45);
  flex-shrink: 0;
}

.oc-support-cta-body {
  display: flex; flex-direction: column;
  gap: 2px;
  text-align: left;
}
.oc-support-cta-label {
  font-family: var(--oc-font-display); font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.oc-support-cta-handle {
  font-family: var(--oc-font-mono);
  font-size: 12px;
  color: #B7F0CB;
  letter-spacing: 0.06em;
}

.oc-support-cta-arrow {
  margin-left: 8px;
  color: #B7F0CB;
  transition: transform 0.3s ease;
}
.oc-support-cta:hover .oc-support-cta-arrow {
  transform: translateX(4px);
}
