/* ===== SECTION ===== */

.dtp {
  margin: 96px 0;
}

.dtp-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TITLE ===== */

.dtp-title {
  font-size: 28px;
  margin-bottom: 8px;
}

.dtp-subtitle {
  max-width: 720px;
  color: #4a5a6a;
  margin-bottom: 40px;
}

/* ===== SHADOW WRAP ===== */

.dtp-shadow-wrap {
  position: relative;
}

/* Общая тень под карточками */
.dtp-shadow-wrap::before {
  content: "";
  position: absolute;
  left: -40px;
  right: -40px;
  bottom: -24px;
  height: 120px;
  background: radial-gradient(
    ellipse at center,
    rgba(15, 40, 80, 0.18) 0%,
    rgba(15, 40, 80, 0.12) 35%,
    rgba(15, 40, 80, 0.06) 55%,
    rgba(15, 40, 80, 0.0) 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ===== GRID ===== */

.dtp-grid {
  position: relative;
  z-index: 1;

  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 32px;
}

.dtp-grid::-webkit-scrollbar {
  height: 8px;
}

.dtp-grid::-webkit-scrollbar-thumb {
  background: #ccd6e0;
  border-radius: 4px;
}

/* ===== CARD ===== */

.dtp-card {
  flex: 0 0 320px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 24px 32px;

  /* ВАЖНО: тени тут НЕТ */
  box-shadow: none;

  display: flex;
  flex-direction: column;
}

/* ===== STEP ===== */

.dtp-step {
  width: 40px;
  height: 40px;
  background: #1e88e5;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ===== ICON ===== */

.dtp-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
}

.dtp-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== TEXT ===== */

.dtp-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.dtp-card p {
  font-size: 14px;
  color: #4a5a6a;
  line-height: 1.4;
}
