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

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 50px;
}

.process-step {
  background: #ffffff;
  border: 1px solid #e9e2cf;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

/* NUMBER */
.process-number {
  display: inline-block;
  background: #C8A04F;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* TITLE */
.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

/* TEXT */
.process-step p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.55;
}

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

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 50px;
}

.safety-card {
  background: #fffaf3;
  border: 1px solid #f0e6c8;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

.safety-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #C8A04F;
  margin-bottom: 6px;
}

.safety-card p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.55;
}

/* ===============================
   CTA CENTER
================================ */

.section.center {
  text-align: center;
}

.section.center h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section.center p {
  font-size: 16px;
  color: #555;
  margin-bottom: 26px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
  .process-grid,
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .safety-card {
    padding: 22px 20px;
  }

  .section.center h2 {
    font-size: 26px;
  }
}
