:root{
  --cf-blue:#0c53a5;
  --cf-blue-2:#1565c0;
  --cf-navy:#022041;
  --cf-dark:#0f1724;
  --cf-text:#4e5b6b;
  --cf-border:#d9e3ee;
  --cf-soft:#f3f7fb;
  --cf-white:#ffffff;
}

.prx-wrap{
  width:100%;
  padding-inline:clamp(20px,4vw,72px);
  box-sizing:border-box;
}

/* HERO */

.prx-hero{
  position:relative;
  overflow:hidden;
  padding:110px 0 80px;
  background:
  linear-gradient(135deg,rgba(2,32,65,.96),rgba(12,83,165,.92)),
  url('/assets/images/backgrounds/industrial-dark.jpg') center/cover;
  color:#fff;
}

.prx-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at top left,rgba(255,255,255,.08),transparent 38%);
}

.prx-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
  color:#fff;
  font-size:13px;
  font-weight:900;
}

.prx-kicker::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#2ea8ff;
}

.prx-hero h1{
  max-width:900px;
  margin:22px 0 18px;
  font-size:clamp(38px,5vw,72px);
  line-height:1.25;
  font-weight:900;
  color:#fff;
}

.prx-hero p{
  max-width:820px;
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:2.2;
  font-size:17px;
}

/* PRODUCTS */

.prx-products{
  position:relative;
  padding:80px 0;
  background:#f7f9fc;
}

.prx-products .prx-wrap{
  display:grid;
  gap:34px;
}

.prx-card{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:430px 1fr;
  border-radius:30px;
  background:#fff;
  border:1px solid #dce6f1;
  box-shadow:
  0 18px 60px rgba(2,32,65,.08);
  transition:.35s ease;
}

.prx-card:hover{
  transform:translateY(-6px);
  box-shadow:
  0 26px 70px rgba(2,32,65,.14);
}

.prx-card__media{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
  linear-gradient(145deg,#022041,#0c53a5);
  min-height:340px;
  overflow:hidden;
}

.prx-card__media::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
}

.prx-card__media img{
  position:relative;
  z-index:2;
  width:82%;
  max-height:250px;
  object-fit:contain;
  transition:.45s ease;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.25));
}

.prx-card:hover .prx-card__media img{
  transform:scale(1.04);
}

.prx-card__body{
  padding:42px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.prx-card__body>span{
  color:var(--cf-blue);
  font-size:13px;
  font-weight:900;
  letter-spacing:.5px;
}

.prx-card h2{
  margin:12px 0 16px;
  color:var(--cf-navy);
  font-size:36px;
  line-height:1.4;
}

.prx-card p{
  margin:0 0 28px;
  color:var(--cf-text);
  line-height:2.2;
  font-size:15.8px;
}

.prx-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:30px;
}

.prx-tags small{
  padding:10px 14px;
  border-radius:999px;
  background:#eef5fd;
  color:#0c53a5;
  border:1px solid #d5e5f8;
  font-size:12px;
  font-weight:900;
}

.prx-more{
  width:max-content;
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 22px;
  border-radius:14px;
  background:var(--cf-blue);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  transition:.3s ease;
}

.prx-more:hover{
  background:#083b78;
  transform:translateY(-2px);
}

/* NOTE */

.prx-note{
  padding:80px 0;
  background:
  linear-gradient(135deg,#022041,#0b315d);
}

.prx-note__box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  padding:42px;
  border-radius:30px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
}

.prx-note span{
  color:#63b3ff;
  font-size:13px;
  font-weight:900;
}

.prx-note h2{
  margin:10px 0 0;
  color:#fff;
  font-size:clamp(30px,3vw,46px);
  line-height:1.5;
}

.prx-note p{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:2.2;
}

/* CTA */

.prx-cta{
  padding:90px 0;
  background:#fff;
  text-align:center;
}

.prx-cta h2{
  max-width:850px;
  margin:0 auto 28px;
  color:var(--cf-navy);
  font-size:clamp(32px,3vw,50px);
  line-height:1.6;
}

.prx-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:240px;
  min-height:60px;
  padding-inline:26px;
  border-radius:18px;
  background:
  linear-gradient(135deg,#0c53a5,#1565c0);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:15px;
  box-shadow:
  0 14px 34px rgba(12,83,165,.28);
  transition:.3s ease;
}

.prx-cta a:hover{
  transform:translateY(-4px);
  box-shadow:
  0 20px 40px rgba(12,83,165,.35);
}

/* MOBILE */

@media(max-width:980px){

  .prx-card{
    grid-template-columns:1fr;
  }

  .prx-card__media{
    min-height:260px;
  }

  .prx-note__box{
    grid-template-columns:1fr;
  }

}

@media(max-width:640px){

  .prx-hero{
    padding:80px 0 60px;
  }

  .prx-card__body{
    padding:28px;
  }

  .prx-card h2{
    font-size:28px;
  }

}
