/* =============================================
   MCAKEY — WHY MCAKEY USP SECTION
   ============================================= */

.mca-usp-widget {
  width: calc(33.33% - 16px);
  flex: 0 0 calc(33.33% - 16px);
  max-width: calc(33.33% - 16px);
  box-sizing: border-box;
}

.mca-usp-widget .elementor-widget-container {
  height: 100%;
}

.mca-usp-widget .mca-usp-card {
  width: 100%;
  flex: none;
  max-width: 100%;
  height: 100%;
}

.mca-usp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.mca-usp-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--e-global-color-accent);
  transform: translateY(-4px);
}

.mca-usp-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(127,216,32,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.mca-usp-card:hover .mca-usp-icon {
  background: rgba(127,216,32,0.25);
}

.mca-usp-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--e-global-color-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mca-usp-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.mca-usp-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .mca-usp-widget {
    width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 767px) {
  .mca-usp-widget {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mca-usp-card { padding: 24px 20px; }
}
