:root{
  --bg:#081327;
  --bg-soft:#0c1a33;
  --panel:#0d1830;
  --panel-2:#101d38;
  --border:#1b2a4b;
  --text:#eef4ff;
  --muted:#93a4c3;
  --accent:#2a4fff;
  --accent-2:#4f46e5;
  --ok:#22c55e;
  --warn:#f59e0b;
  --danger:#ef4444;
  --shadow:0 18px 50px rgba(0,0,0,.28);
  --radius:18px;
  --radius-sm:12px;
}

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
}

body.industrial-page{
  background:
    radial-gradient(circle at top left, rgba(42,79,255,.10), transparent 35%),
    linear-gradient(180deg,#071121 0%, #081327 100%);
  color:var(--text);
  font-family:Arial,sans-serif;
}

.industrial-wrap{
  max-width:1280px;
  margin:0 auto;
  padding:28px 18px 40px;
}

.industrial-back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  text-decoration:none;
  margin-bottom:18px;
  font-size:14px;
}

.industrial-back-link:hover{
  color:#fff;
}

.industrial-hero{
  margin-bottom:24px;
}

.industrial-hero h1{
  margin:0 0 10px;
  font-size:36px;
  line-height:1.08;
}

.industrial-hero p{
  margin:0;
  max-width:920px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
}

.industrial-notice{
  margin-top:18px;
  padding:14px 16px;
  border-radius:14px;
  font-size:14px;
}

.industrial-notice.info{
  border:1px solid rgba(42,79,255,.18);
  background:rgba(42,79,255,.08);
  color:#dce6ff;
}

.industrial-notice.warn{
  border:1px solid rgba(245,158,11,.18);
  background:rgba(245,158,11,.08);
  color:#ffe2a8;
}

.industrial-grid{
  display:grid;
  gap:20px;
}

.industrial-grid.cards-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.industrial-grid.cards-3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.industrial-grid.cards-auto{
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
}

.industrial-card{
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  box-shadow:var(--shadow);
  transition:.2s ease;
}

.industrial-card:hover{
  transform:translateY(-4px);
  border-color:rgba(42,79,255,.55);
}

.industrial-card-body{
  padding:18px;
}

.industrial-card-image{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  background:#060c18;
  border-bottom:1px solid var(--border);
}

.industrial-meta-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.industrial-eyebrow{
  color:var(--muted);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.4px;
}

.industrial-title{
  margin:0 0 8px;
  font-size:23px;
  line-height:1.2;
}

.industrial-subtitle{
  color:#cfdcff;
  font-size:14px;
  margin-bottom:10px;
}

.industrial-desc{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.industrial-detail-box{
  margin-top:12px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.02);
  color:#dce6ff;
  font-size:14px;
  line-height:1.5;
}

.industrial-bottom{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:12px;
  margin-top:16px;
}

.industrial-price{
  font-size:26px;
  font-weight:800;
}

.industrial-price-note{
  color:var(--muted);
  font-size:12px;
  margin-top:4px;
}

.industrial-badge{
  display:inline-block;
  padding:5px 10px;
  font-size:12px;
  border-radius:999px;
  font-weight:700;
}

.industrial-badge.restaurada{
  background:rgba(34,197,94,.18);
  color:#9ff2b7;
  border:1px solid rgba(34,197,94,.28);
}

.industrial-badge.revisada{
  background:rgba(245,158,11,.18);
  color:#ffd27d;
  border:1px solid rgba(245,158,11,.28);
}

.industrial-badge.oportunidad{
  background:rgba(42,79,255,.18);
  color:#bfd0ff;
  border:1px solid rgba(42,79,255,.28);
}

.industrial-badge.probado{
  background:rgba(34,197,94,.18);
  color:#9ff2b7;
  border:1px solid rgba(34,197,94,.28);
}

.industrial-badge.inspeccionado{
  background:rgba(245,158,11,.18);
  color:#ffd27d;
  border:1px solid rgba(245,158,11,.28);
}

.industrial-badge.salida{
  background:rgba(239,68,68,.18);
  color:#ffaaaa;
  border:1px solid rgba(239,68,68,.28);
}

.industrial-badge.desarme{
  background:rgba(245,158,11,.18);
  color:#ffd27d;
  border:1px solid rgba(245,158,11,.28);
}

.industrial-badge.stock{
  background:rgba(34,197,94,.18);
  color:#9ff2b7;
  border:1px solid rgba(34,197,94,.28);
}

.industrial-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 14px;
  border-radius:12px;
  text-decoration:none;
  border:1px solid transparent;
  font-weight:700;
  transition:.2s ease;
  white-space:nowrap;
  cursor:pointer;
}

.industrial-btn-primary{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;
  box-shadow:0 10px 25px rgba(42,79,255,.25);
}

.industrial-btn-primary:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

.industrial-btn-secondary{
  background:rgba(255,255,255,.03);
  border-color:var(--border);
  color:var(--text);
}

.industrial-btn-secondary:hover{
  border-color:#2a4fff;
}

.industrial-chip-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:24px 0;
}

.industrial-chip{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
  color:var(--text);
  font-size:14px;
}

.industrial-box{
  margin-top:26px;
  padding:22px;
  border-radius:18px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  box-shadow:var(--shadow);
}

.industrial-box h3{
  margin:0 0 8px;
  font-size:22px;
}

.industrial-box p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.6;
}

.industrial-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.industrial-form-box{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:22px;
}

.industrial-form-group{
  margin-bottom:16px;
}

.industrial-form-label{
  display:block;
  margin-bottom:6px;
  font-size:14px;
  color:#dce6ff;
}

.industrial-input,
.industrial-textarea,
.industrial-select{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#0c1a33;
  color:#fff;
  font-size:14px;
  outline:none;
}

.industrial-input:focus,
.industrial-textarea:focus,
.industrial-select:focus{
  border-color:#2a4fff;
  box-shadow:0 0 0 3px rgba(42,79,255,.12);
}

.industrial-textarea{
  min-height:120px;
  resize:vertical;
}

.industrial-message{
  padding:12px 14px;
  border-radius:12px;
  margin-bottom:16px;
  font-size:14px;
}

.industrial-message.ok{
  background:rgba(34,197,94,.15);
  border:1px solid rgba(34,197,94,.35);
  color:#b7f7c7;
}

.industrial-message.error{
  background:rgba(239,68,68,.15);
  border:1px solid rgba(239,68,68,.35);
  color:#ffc1c1;
}

.industrial-specs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:16px;
}

.industrial-spec{
  background:rgba(255,255,255,.02);
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
}

.industrial-spec-label{
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.4px;
  margin-bottom:6px;
}

.industrial-spec-value{
  font-size:15px;
  font-weight:700;
}

.industrial-list{
  margin:0;
  padding-left:18px;
  color:#d8e4ff;
}

.industrial-list li{
  margin-bottom:10px;
}

@media (max-width: 980px){
  .industrial-grid.cards-2,
  .industrial-grid.cards-3{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .industrial-hero h1{
    font-size:30px;
  }

  .industrial-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .industrial-btn{
    width:100%;
  }

  .industrial-specs{
    grid-template-columns:1fr;
  }
}