/* ═══════════════════════════════════════
   CAPABILITIES PAGE
═══════════════════════════════════════ */
.cap-full-grid{display:flex;flex-direction:column;gap:1px;margin-top:3rem}
.cap-row{
  display:grid;grid-template-columns:280px 1fr;
  border:1px solid var(--border);border-radius:3px;
  background:linear-gradient(135deg,rgba(7,18,40,0.9),rgba(4,12,26,0.95));
  overflow:hidden;transition:border-color 0.3s;
  margin-bottom:1rem;
}
.cap-row:hover{border-color:var(--border-hi)}
.cap-row-head{
  padding:2.2rem;border-right:1px solid var(--border);
  display:flex;flex-direction:column;justify-content:center;
  background:linear-gradient(135deg,rgba(26,106,255,0.08),transparent);
  position:relative;overflow:hidden;
}
.cap-row-head::after{
  content:'';position:absolute;inset:0;
  background-size:cover;background-position:center;background-repeat:no-repeat;
  opacity:0.45;z-index:0;
  transition:opacity 0.4s;
}
.cap-manufacturing::after{background-image:url('../../assets/images/cap-manufacturing.jpg')}
.cap-ait::after{background-image:url('../../assets/images/cap-ait.jpg')}
.cap-components::after{background-image:url('../../assets/images/cap-components.jpg')}
.cap-harnessing::after{background-image:url('../../assets/images/cap-harnessing.jpg')}
.cap-cleanroom::after{background-image:url('../../assets/images/cap-cleanroom.jpg')}
.cap-launch::after{background-image:url('../../assets/images/cap-launch.jpg')}
.cap-row:hover .cap-row-head::after{opacity:0.65}
.cap-row-head > *{position:relative;z-index:1}
.cap-row-head .ico{width:44px;height:44px;margin-bottom:1rem;border-radius:50%;background:linear-gradient(135deg,rgba(0,212,255,0.14),rgba(26,106,255,0.08));border:1px solid rgba(0,212,255,0.2);display:flex;align-items:center;justify-content:center}
.cap-row-head .ico svg{width:20px;height:20px;color:var(--cyan)}
.cap-row-head h3{font-family:'Orbitron',monospace;font-size:0.72rem;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;color:var(--white);margin-bottom:0.3rem}
.cap-row-head p{font-size:0.82rem;color:var(--dim)}
.cap-row-body{padding:2.2rem}
.cap-row-body p{color:var(--pale);font-size:0.97rem;margin-bottom:1.2rem;line-height:1.65}
.bullet-list{list-style:none;display:flex;flex-direction:column;gap:0.4rem}
.bullet-list li{display:flex;align-items:baseline;gap:0.8rem;font-size:0.9rem;color:var(--dim)}
.bullet-list li::before{content:'';width:4px;height:4px;background:var(--cyan);border-radius:50%;flex-shrink:0;box-shadow:0 0 6px var(--cyan);margin-top:0.5rem}

@media(max-width:960px){
  .cap-row{grid-template-columns:1fr;border:1px solid var(--border)}
  .cap-row-head{border-right:none;border-bottom:1px solid var(--border)}
}
@media(max-width:480px){
  .cap-row-head{padding:1.5rem}
  .cap-row-body{padding:1.5rem}
}
