/* =========================
   PAGE TITLE
========================= */
.page-title{
  text-align:center;
  padding:65px 0 35px;
}
.page-title .small{
  font-size:15px;
  letter-spacing:8px;
  color:#326aa5;
  font-weight:700;
}
.page-title h2{
  color:#0757a7;
  font-size:48px;
  line-height:1.1;
  margin:5px 0 18px;
}
.title-meta{
  display:flex;
  justify-content:center;
  gap:24px;
  color:#52687d;
  font-size:14px;
}
.title-meta span+span:before{
  content:"|";
  margin-right:24px;
  color:#2d72bb;
}

/* =========================
   PRODUCT INTRO
========================= */
.product-intro{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:50px;
  align-items:center;
  padding:10px 0 70px;
}
.product-visual{
  border-radius:8px;
  overflow:hidden;
  background:linear-gradient(145deg,#0769b9,#dff5ff);
  min-height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.product-info h3{
  color:#0757a7;
  font-size:34px;
  line-height:1.15;
  margin-bottom:15px;
}
.product-description{
  color:#53697d;
  margin-bottom:22px;
}
.section-label{
  color:#0b4f93;
  font-size:18px;
  font-weight:800;
  margin-bottom:13px;
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.feature-card{
  border:1px solid #dce8f4;
  border-radius:9px;
  min-height:100px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:10px 5px;
  background:#fff;
  box-shadow:0 4px 15px rgba(0,73,140,.05);
}
.feature-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#eef7ff;
  color:#0871cf;
  display:grid;
  place-items:center;
  font-weight:900;
  margin-bottom:6px;
}
.feature-card strong{font-size:11px;color:#173d63}
.feature-card span{font-size:9px;color:#65788a}
.capacity-title{
  margin-top:22px;
  font-weight:800;
  color:#0b4f93;
}
.capacities{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  margin-top:8px;
}
.capacity{
  padding:7px 17px;
  border:1px solid #1680db;
  color:#0757a7;
  border-radius:20px;
  font-size:12px;
  font-weight:800;
  background:#fff;
}
.capacity.selected{
  color:#fff;
  background:#0874ca;
}
.cta-row{
  display:flex;
  gap:12px;
  margin-top:20px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:145px;
  padding:12px 20px;
  border-radius:6px;
  font-weight:800;
  font-size:12px;
  border:1px solid #0874ca;
  cursor:pointer;
  transition:.25s;
}
.btn-primary{background:#0874ca;color:#fff}
.btn-secondary{background:#fff;color:#0874ca}
.btn:hover{transform:translateY(-2px);box-shadow:0 8px 18px rgba(0,95,180,.18)}

/* =========================
   SPECIFICATIONS
========================= */
.spec-section{
  
  padding:65px 0;
}
.section-heading{
  color:#073f79;
  font-size:28px;
  margin-bottom:20px;
}
.heading-line{
  width:45px;
  height:4px;
  background:#0874ca;
  margin-bottom:20px;
}
.spec-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid #c9dceb;
  border-radius:7px;
  background:#fff;
}
.spec-table td{
  padding:16px 20px;
  border-bottom:1px solid #d9e6f0;
  font-size:14px;
}
.spec-table tr:last-child td{border-bottom:0}
.spec-table td:first-child{
  width:34%;
  color:#fff;
  background:linear-gradient(90deg,#0869c5,#0759a7);
  font-weight:800;
}
.spec-table td:last-child{color:#304e6b}



/* =========================
   MOBILE
========================= */
@media(max-width:900px){
  
  .product-intro{grid-template-columns:1fr;gap:30px}
  .product-visual{min-height:auto}
  .smart-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:650px){
 
  .page-title{padding:42px 0 25px}
  .page-title h2{font-size:34px}
  .page-title .small{font-size:11px;letter-spacing:5px}
  .title-meta{gap:10px;font-size:11px}
  .title-meta span+span:before{margin-right:10px}
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .smart-grid{grid-template-columns:1fr}
  .cta-row{flex-direction:column}
  .btn{width:100%}
  .footer-inner{flex-direction:column;text-align:center}
  .footer-nav{flex-wrap:wrap;justify-content:center}
  .copyright{text-align:center}
  .spec-table td{padding:12px 10px;font-size:12px}
}