.pro-band {
  padding-top: 58px;
}

.pro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pro-grid article,
.process-steps div {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 22px 70px rgba(15, 23, 42, .08);
}

.pro-grid b {
  display: inline-flex;
  color: #0f766e;
  font-size: 14px;
  margin-bottom: 12px;
}

.pro-grid h3,
.process-steps strong {
  display: block;
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 22px;
}

.pro-grid p,
.process-steps p {
  margin: 0;
}

.pro-process {
  padding-top: 48px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.process-steps div {
  position: relative;
  min-height: 170px;
}

.process-steps div::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 18px;
  color: #1456a3;
  font-weight: 900;
}

.product-card-media img,
.card img {
  background: #e2e8f0;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 28px;
  align-items: center;
  margin: 20px 0 34px;
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, .14);
}

.detail-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.detail-seo-grid div {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px;
}

.detail-seo-grid b {
  display: block;
  color: #1456a3;
  margin-bottom: 8px;
}

.detail-seo-grid span {
  color: #334155;
}

.project-gallery {
  max-width: none;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.project-gallery .section-title,
.project-gallery .project-grid {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.section-title span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #0f766e;
  font-weight: 900;
  letter-spacing: 0;
}

.section-title h2 {
  margin-top: 0;
  color: #0f172a;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.project-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 22px 70px rgba(15, 23, 42, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.project-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 90px rgba(15, 23, 42, .14);
}

.project-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #e2e8f0;
}

.project-grid div {
  padding: 18px;
}

.project-grid h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.18;
}

.project-grid p {
  margin: 0;
  font-size: 15px;
}

@media (max-width: 980px) {
  .pro-grid,
  .process-steps,
  .detail-seo-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .pro-grid,
  .process-steps,
  .detail-seo-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-grid img {
    aspect-ratio: 16 / 11;
  }
}
