@keyframes cardPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(239, 119, 39, 0);
  }
  50% {
    box-shadow: 0 0 22px rgba(239, 119, 39, 0.22), inset 0 0 10px rgba(255, 160, 76, 0.06);
  }
}

@keyframes centerGlow {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.88);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

.four-feat {
  padding: 0 0 80px;
}

.four-feat-wrap {
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 0 var(--side);
}

/* Grid + merkez animasyonlu glow */
.four-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  position: relative;
}

.four-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center,
  rgba(239, 119, 39, 0.35) 0%,
  rgba(255, 160, 76, 0.20) 35%,
  transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: centerGlow 3.5s ease-in-out infinite;
}

.four-item {
  background: var(--white);
  border-radius: 13px;
  padding: 40px 35px;
  width: calc(50% - 9px);
  display: flex;
  flex-direction: column;
  gap: 27px;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  align-items: stretch;
}

.four-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}

.four-num {
  flex-shrink: 0;
  width: 68px;
  height: 70px;
  background: var(--orange);
  border-radius: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.four-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
  width: 100%;
}

.four-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.four-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.55;
}
