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

.cc-catalog-hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#022041;
}

.cc-catalog-hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(2,32,65,.82),rgba(2,32,65,.88)),
    url('/assets/images/home/modern-crane-cabin.jpeg') center/cover no-repeat;
}

.cc-catalog-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:80px 80px;
  opacity:.22;
}

.cc-catalog-hero__content{
  position:relative;
  z-index:2;
  max-width:860px;
  padding-block:90px;
}

.cc-catalog-mini{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  color:#c8d8ea;
  font-size:13px;
  font-weight:900;
  letter-spacing:1px;
}

.cc-catalog-mini:before{
  content:"";
  width:38px;
  height:2px;
  background:#0c53a5;
}

.cc-catalog-hero h1{
  margin:0 0 22px;
  color:#fff;
  font-size:clamp(42px,6vw,88px);
  line-height:1.05;
  font-weight:950;
}

.cc-catalog-hero p{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.74);
  line-height:2;
  font-size:17px;
}

.cc-catalog-hero__actions{
  margin-top:34px;
}

.cc-catalog-btn-primary{
  min-height:52px;
  padding:0 24px;
  border-radius:14px;
  background:#0c53a5;
  color:#fff;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  transition:.2s ease;
}

.cc-catalog-btn-primary:hover{
  transform:translateY(-2px);
  background:#0f62c2;
}

.cc-catalog-form-section{
  padding:84px 0;
  background:#f5f7fa;
}

.cc-catalog-form-box{
  max-width:980px;
  margin:0 auto;
  background:#fff;
  border-radius:28px;
  border:1px solid #e7edf3;
  padding:38px;
  box-shadow:0 18px 60px rgba(2,32,65,.08);
}

.cc-catalog-form-head{
  margin-bottom:30px;
}

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

.cc-catalog-form-head span:before{
  content:"";
  width:34px;
  height:2px;
  background:#0c53a5;
}

.cc-catalog-form-head h2{
  margin:0 0 14px;
  color:#022041;
  font-size:clamp(28px,3vw,42px);
  line-height:1.3;
  font-weight:950;
}

.cc-catalog-form-head p{
  margin:0;
  color:#64748b;
  line-height:2;
}

.cc-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.cc-catalog-form label{
  display:grid;
  gap:8px;
}

.cc-catalog-form label span{
  color:#022041;
  font-size:13px;
  font-weight:900;
}

.cc-catalog-form input{
  width:100%;
  min-height:52px;
  border:1px solid #dce5ee;
  border-radius:14px;
  padding:0 16px;
  box-sizing:border-box;
  font-family:inherit;
  font-size:14px;
  transition:.2s ease;
}

.cc-catalog-form input:focus{
  outline:none;
  border-color:#0c53a5;
  box-shadow:0 0 0 4px rgba(12,83,165,.08);
}

.cc-catalog-form button{
  width:100%;
  margin-top:22px;
  min-height:54px;
  border:none;
  border-radius:16px;
  background:#022041;
  color:#fff;
  font-family:inherit;
  font-size:15px;
  font-weight:950;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:.2s ease;
}

.cc-catalog-form button:hover{
  background:#0c53a5;
}

@media(max-width:860px){

  .cc-catalog-hero{
    min-height:auto;
  }

  .cc-catalog-hero__content{
    padding-block:70px;
  }

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

  .cc-catalog-form-box{
    padding:24px;
  }

}

@media(max-width:640px){

  .cc-catalog-hero h1{
    font-size:46px;
  }

  .cc-catalog-hero p{
    font-size:15px;
  }

}
