/* ===== DP300 STATS STRIP ===== */

/* stats */
.dp-stats {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.dp-stats-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 24px;
  gap: 20px;
}

.dp-stat {
  flex: 1;
  text-align: center;
  position: relative;
}

/* vertical separators */
.dp-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}

.dp-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.dp-num sup {
  font-size: 0.6em;
}

.dp-label {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dp-label1{
  font-size: 0.9;
  color: var(--text-secondary);
  font-weight: bold;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .dp-stats-wrap {
    padding: 24px 30px;
    
  }
}

@media (max-width: 768px) {
  .dp-stats-wrap {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .dp-stat {
    flex: 1 1 50%;
  }

  .dp-stat::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .dp-stat {
    flex: 1 1 100%;
  }

  .dp-num {
    font-size: 1.5rem;
  }
}

/* ===== DP300 PRINT MODES ===== */

.dp-modes {
  padding: 60px 60px;
  background: var(--white);
}

.dp-modes-head {
  max-width: 700px;
  margin-bottom: 50px;
}

.dp-modes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gray-200);
}

/* CARD */

.dp-mode {
  padding: 32px 26px;
  border-right: 1px solid var(--gray-200);
  position: relative;
  background: var(--white);
  transition: 0.3s ease;
}

.dp-mode:last-child {
  border-right: none;
}

/* TOP LINE */

.dp-mode-top {
  width: 24px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 16px;
}

/* MODE LABEL */

.dp-mode-id {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-family: 'IBM Plex Mono', monospace;
}

/* ICON */

.dp-mode-icon {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
  background: var(--orange);
  color: #fff;
}

/* TITLE */

.dp-mode-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

/* DESC */

.dp-mode-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.dp-mode:hover {
  background: #c9d7f1; /* light blue */
}

/* === FIX IMAGE CONSISTENCY === */
.dp-mode-icon {
  width: 100%;
  aspect-ratio: 4 / 3; /* you can use 16/9 also */
  overflow: hidden;
  border-radius: 4px;
  background:none;
}

/* IMAGE INSIDE */
.dp-mode-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* fills without distortion */
  display: block;
}

/* === MAKE ALL CARDS EQUAL HEIGHT === */
.dp-modes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gray-200);
  align-items: stretch; /* IMPORTANT */
}

/* === FORCE CONTENT ALIGNMENT === */
.dp-mode {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* PUSH DESCRIPTION DOWN CONSISTENTLY */
.dp-mode-desc {
  margin-top: auto;
}
/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .dp-modes {
    padding: 60px 30px;
  }

  .dp-modes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dp-modes-grid {
    grid-template-columns: 1fr;
  }

  .dp-mode {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

  .dp-mode:last-child {
    border-bottom: none;
  }
}
/* ===== ENGINEERING SECTION ===== */

.s-engine {
  padding: 80px 60px;
  background: var(--navy);
}

/* MAIN BOX */

.engine-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
}

/* LEFT */

.engine-left {
  padding: 60px 50px;
  background: var(--white);
}

/* RIGHT */

.engine-right {
  padding: 40px;
  border-left: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LIST */

.engine-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.engine-item {
  display: flex;
  gap: 16px;
}

/* DOT */

.engine-item .dot {
  width: 6px;
  height: 6px;
  margin-top: 8px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
}

/* TEXT */

.engine-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.engine-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* VISUAL */

.engine-visual {
  width: 100%;
  max-width: 320px;
}

.engine-wrap {
  grid-template-columns: 1fr 1.2fr;
}

.engine-visual {
  width: 100%;
  max-width: 500px;
}

.engine-visual svg {
  width: 100%;
  height: auto;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

  .s-engine {
    padding: 60px 30px;
  }

  .engine-wrap {
    grid-template-columns: 1fr;
  }

  .engine-right {
    border-left: none;
    border-top: 1px solid var(--gray-200);
  }

}

@media (max-width: 600px) {

  .engine-left {
    padding: 40px 24px;
  }

  .engine-right {
    padding: 30px 20px;
  }

}