.process-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at 8% 15%, rgba(41, 190, 132, 0.2), transparent 28%),
    radial-gradient(circle at 93% 90%, rgba(255, 94, 31, 0.14), transparent 25%),
    linear-gradient(135deg, #043e2e 0%, #006345 56%, #054733 100%);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.process-section .container { position: relative; z-index: 1; }

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 35px;
  margin-bottom: 42px;
}

.process-heading > div { max-width: 720px; }
.process-heading .eyebrow { color: #9ff0d1; }
.process-heading .eyebrow i { background: #9ff0d1; }
.process-heading h2 { color: #fff; font-size: clamp(31px, 4vw, 47px); margin-top: 12px; }
.process-heading p { max-width: 650px; color: #cce8de; line-height: 1.7; margin: 10px 0 0; }
.process-heading .btn { box-shadow: 0 13px 32px rgba(255, 80, 20, 0.3); }

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 8%;
  right: 8%;
  top: 40px;
  height: 2px;
  background: linear-gradient(90deg, #72d8b2 0%, #fff 50%, #ff8a5e 100%);
  opacity: 0.7;
}

.process-grid article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 24px 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 55px rgba(0, 24, 17, 0.22);
  backdrop-filter: blur(12px);
}

.process-grid article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #00825a, #ff5a1f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.process-grid article:hover::after { transform: scaleX(1); }

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.process-top span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 7px solid #dff5ec;
  border-radius: 50%;
  background: #007652;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(0, 118, 82, 0.23);
}

.process-grid h3 { margin: 0 0 12px; color: #102139; font-size: 19px; line-height: 1.25; }
.process-grid p { margin: 0 0 20px; color: #65758a; font-size: 12.5px; line-height: 1.72; }
.process-grid small { align-self: flex-start; margin-top: auto; padding: 8px 13px; border-radius: 999px; background: #fff0ea; color: #dc4210; font-size: 11px; font-weight: 900; }

.process-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border: 1px solid #c8e8dc;
  border-radius: 14px;
  background: linear-gradient(145deg, #f0fbf7, #dff3eb);
  color: #007652;
  box-shadow: 0 9px 20px rgba(0, 91, 64, 0.1);
}

.process-icon img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.process-icon::before,
.process-icon::after { display: none !important; }
.process-icon::before, .process-icon::after { content: ""; position: absolute; }
.icon-message::before { width: 22px; height: 16px; left: 12px; top: 12px; border: 2px solid currentColor; border-radius: 5px; }
.icon-message::after { width: 7px; height: 7px; left: 15px; top: 27px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: skewY(-35deg); }
.icon-design::before { width: 25px; height: 7px; left: 10px; top: 19px; border: 2px solid currentColor; border-radius: 5px; transform: rotate(-43deg); }
.icon-design::after { left: 7px; top: 28px; border: 5px solid transparent; border-right-color: currentColor; transform: rotate(-43deg); }
.icon-factory::before { width: 27px; height: 21px; left: 10px; top: 17px; border: 2px solid currentColor; border-top: 0; clip-path: polygon(0 30%, 30% 0, 45% 30%, 75% 0, 100% 30%, 100% 100%, 0 100%); }
.icon-factory::after { width: 5px; height: 11px; left: 13px; top: 8px; background: currentColor; }
.icon-truck::before { width: 25px; height: 16px; left: 7px; top: 14px; border: 2px solid currentColor; border-radius: 3px; }
.icon-truck::after { width: 9px; height: 11px; left: 32px; top: 19px; border: 2px solid currentColor; border-left: 0; border-radius: 0 4px 3px 0; box-shadow: -19px 12px 0 -5px currentColor, -1px 12px 0 -5px currentColor; }

@media (max-width: 980px) {
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid::before { display: none; }
  .process-grid article { min-height: 270px; }
}

@media (max-width: 700px) {
  .process-section { padding: 52px 0; }
  .process-heading { grid-template-columns: 1fr; align-items: start; margin-bottom: 28px; }
  .process-heading h2 { font-size: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 0; padding: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .process-grid article::after { transition: none; }
}
