/* ===== «ПОЧЕМУ МЫ» (карточки с 3D-наклоном) ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  text-align: center;
  transform-style: preserve-3d;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.35s var(--ease), opacity 0.8s var(--ease);
  will-change: transform;
}

.feature:hover {
  border-color: var(--gold-line);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 18px;
  transform: translateZ(30px);
}

.feature-title {
  font-size: 21px;
  color: var(--text);
  margin-bottom: 10px;
  transform: translateZ(20px);
}

.feature-text {
  color: var(--muted);
  font-size: 15px;
  transform: translateZ(14px);
}

/* свечение по позиции курсора */
.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%),
    rgba(201, 168, 106, 0.1), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.feature:hover::after {
  opacity: 1;
}
