/* =========================================================
   s03.css — S03 Industri Pengolahan
   Nuansa: biru baja • clean • product/manufacturing
========================================================= */

:root{
  --accent:#1565c0;
  --accent-2:#0d47a1;
  --accent-soft: rgba(21,101,192,.10);
}

/* Hero gaya “product / factory” */
.hero-factory{
  background: linear-gradient(135deg, #ffffff, var(--accent-soft));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:20px;
  position:relative;
  overflow:hidden;
}

.hero-factory::after{
  content:"";
  position:absolute;
  width:320px;height:320px;
  right:-180px; top:-200px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(21,101,192,.22), transparent 60%);
  pointer-events:none;
}

.hero-factory h1{
  margin:0 0 10px;
  font-weight:900;
  letter-spacing:-.6px;
  font-size:clamp(22px,3vw,38px);
  line-height:1.15;
}

.hero-factory p{margin:0;color:var(--muted)}

.pills{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  background:var(--accent-soft);
  border:1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  color:color-mix(in srgb, var(--accent) 80%, #111);
}
.pill i{
  width:9px;height:9px;border-radius:999px;
  background:var(--accent);
  display:inline-block;
}

/* Section “Produk unggulan” */
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.product-card{
  background:linear-gradient(180deg,#fff,rgba(21,101,192,.03));
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 10px 24px rgba(20,24,31,.06);
  padding:16px;
  position:relative;
  overflow:hidden;
}

.product-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:5px;
  background:var(--accent);
}

.product-card h3{margin:0 0 6px;font-size:15px}
.product-card p{margin:0;color:var(--muted);font-size:13px}

/* “Proses Produksi” */
.process{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin-top:10px;
}

.step{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  text-align:left;
}

.step strong{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:13px;
}

.step strong span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;height:26px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-weight:900;
  font-size:12px;
}

.step p{margin:8px 0 0;color:var(--muted);font-size:12.5px}

/* CTA Box */
.cta-box{
  background:linear-gradient(135deg,#111827, rgba(17,24,39,.92));
  color:#fff;
  border-radius:18px;
  padding:18px;
  border:1px solid rgba(255,255,255,.10);
}

.cta-box p{margin:6px 0 0;color:rgba(255,255,255,.80)}
.cta-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}

.cta-box .btn-outline{
  border-color:rgba(255,255,255,.28);
  color:#fff;
}
.cta-box .btn-outline:hover{background:rgba(255,255,255,.08)}

/* Override button primary untuk sektor */
.btn-primary{background:var(--accent)}
.btn-primary:hover{background:var(--accent-2)}

/* Responsive */
@media(max-width:980px){
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .process{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:560px){
  .product-grid{grid-template-columns:1fr}
  .process{grid-template-columns:1fr}
}
