.cc-products-container{
  width:100%;
  max-width:none;
  padding-inline:clamp(18px,4vw,72px);
  box-sizing:border-box;
}

.cc-products-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  color:#0c53a5;
  font-size:13px;
  font-weight:900;
}

.cc-products-eyebrow:before{
  content:"";
  width:34px;
  height:2px;
  background:currentColor;
  opacity:.55;
}

.cc-products-hero{
  position:relative;
  min-height:540px;
  background:#022041;
  overflow:hidden;
  display:flex;
  align-items:center;
}

.cc-products-hero__image{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(2,32,65,.94),rgba(12,83,165,.58)),
    url('/assets/images/home/steel-factory-crane-cabin.jpg') center/cover no-repeat;
}

.cc-products-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(135deg,rgba(255,255,255,.07) 1px,transparent 1px),
    radial-gradient(circle,rgba(255,255,255,.13) 1px,transparent 1.7px);
  background-size:86px 86px,24px 24px;
  opacity:.22;
}

.cc-products-hero__inner{
  position:relative;
  z-index:2;
  max-width:900px;
  color:#fff;
}

.cc-products-hero .cc-products-eyebrow{
  color:#fff;
}

.cc-products-hero h1{
  margin:0 0 20px;
  color:#fff;
  font-size:clamp(40px,5.4vw,76px);
  line-height:1.14;
  font-weight:950;
}

.cc-products-hero p{
  margin:0;
  max-width:780px;
  color:rgba(255,255,255,.78);
  font-size:17px;
  line-height:2.05;
}

.cc-products-list{
  padding:76px 0;
  background:#f5f7fa;
}

.cc-products-head{
  margin-bottom:32px;
}

.cc-products-head h2{
  margin:0;
  color:#022041;
  font-size:clamp(28px,3vw,44px);
  font-weight:950;
}

.cc-products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.cc-product-card{
  display:block;
  background:#fff;
  border:1px solid #e7edf3;
  border-radius:26px;
  overflow:hidden;
  text-decoration:none;
  color:#111827;
  box-shadow:0 16px 46px rgba(2,32,65,.07);
  transition:.24s ease;
}

.cc-product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 76px rgba(2,32,65,.13);
}

.cc-product-card img{
  width:100%;
  height:245px;
  object-fit:cover;
  display:block;
}

.cc-product-card div{
  padding:24px;
}

.cc-product-card small{
  display:block;
  color:rgba(12,83,165,.32);
  font-size:30px;
  font-weight:950;
  margin-bottom:10px;
}

.cc-product-card h3{
  margin:0 0 10px;
  color:#022041;
  font-size:21px;
  line-height:1.4;
  font-weight:950;
}

.cc-product-card p{
  margin:0 0 18px;
  color:#64748b;
  font-size:14px;
  line-height:1.9;
}

.cc-product-card span{
  color:#0c53a5;
  font-size:14px;
  font-weight:900;
}

.cc-products-cta{
  padding:72px 0;
  background:#fff;
}

.cc-products-cta__box{
  background:#022041;
  color:#fff;
  border-radius:30px;
  padding-block:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.cc-products-cta h2{
  margin:0 0 12px;
  color:#fff;
  font-size:clamp(26px,3vw,42px);
  line-height:1.35;
  font-weight:950;
}

.cc-products-cta p{
  margin:0;
  max-width:780px;
  color:rgba(255,255,255,.74);
  line-height:2;
}

.cc-products-cta .cc-products-eyebrow{
  color:#fff;
}

.cc-products-cta a{
  min-height:48px;
  padding:0 20px;
  border-radius:14px;
  background:#0c53a5;
  color:#fff;
  text-decoration:none;
  font-weight:950;
  white-space:nowrap;
}

@media(max-width:1024px){
  .cc-products-grid{
    grid-template-columns:1fr 1fr;
  }

  .cc-products-cta__box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:680px){
  .cc-products-hero{
    min-height:auto;
    padding-block:64px;
  }

  .cc-products-grid{
    grid-template-columns:1fr;
  }

  .cc-product-card img{
    height:220px;
  }

  .cc-products-list,
  .cc-products-cta{
    padding-block:56px;
  }
}
