

.manufacturing-process-section{
  font-family:Arial, Helvetica, sans-serif;
  background:#ffffff;
  color:#1f2937;
  line-height:1.7;
}

.manufacturing-process-section *{
  box-sizing:border-box;
}

.manufacturing-process-section .container{
  width:min(1240px,92%);
  margin:0 auto;
}

.hero-section{
  padding:100px 0 84px;
  background:linear-gradient(135deg,#0f172a 0%,#1e293b 58%,#334155 100%);
  color:#ffffff;
}

.eyebrow{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-weight:700;
  color:#60a5fa;
  margin-bottom:14px;
}

h1{
  font-size:clamp(42px,5vw,72px);
  line-height:1.04;
  letter-spacing:-0.045em;
  margin-bottom:30px;
  max-width:900px;
}

h2{
  font-size:clamp(32px,4vw,50px);
  line-height:1.1;
  letter-spacing:-0.035em;
  margin-bottom:24px;
  color:#0f172a;
}

h3{
  font-size:26px;
  margin-bottom:18px;
  color:#0f172a;
}

p{
  font-size:17px;
  margin-bottom:18px;
}

.hero-text{
  max-width:920px;
  color:#dbe4ee;
}

.process-flow-section{
  padding:100px 0;
}

.timeline{
  margin-top:50px;
  display:flex;
  flex-direction:column;
  gap:38px;
}

.timeline-item{
  display:grid;
  grid-template-columns:100px 1fr;
  gap:30px;
  align-items:start;
}

.timeline-number{
  width:82px;
  height:82px;
  border-radius:50%;
  background:#2563eb;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:700;
  box-shadow:0 16px 35px rgba(37,99,235,0.25);
}

.timeline-content{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(15,23,42,0.08);
}

.timeline-image-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:#e5e7eb;
}

.timeline-image{
  background:#f8fafc;
}

.timeline-image img{
  width:100%;
  height:280px;
  object-fit:contain;
  background:#ffffff;
  padding:18px;
  display:block;
}

.timeline-text{
  padding:38px;
}

.timeline-text ul{
  padding-left:20px;
  margin-top:18px;
}

.timeline-text li{
  margin-bottom:10px;
}

.support-section{
  padding:100px 0;
  background:#f8fafc;
}

.two-column{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}

.support-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.support-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:22px;
  box-shadow:0 12px 30px rgba(15,23,42,0.05);
  font-weight:600;
}

.check-icon{
  color:#2563eb;
  font-size:18px;
  font-weight:700;
}

@media(max-width:900px){

  .timeline-item,
  .two-column{
    grid-template-columns:1fr;
  }

  .timeline-image-grid{
    grid-template-columns:1fr;
  }

  .timeline-number{
    width:70px;
    height:70px;
    font-size:24px;
  }

  .timeline-image img{
    height:220px;
  }

  .hero-section{
    padding:72px 0 60px;
  }

}

