/* ===============================
   INDUSTRIAL — BASE
================================ */
.industrial-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0b0f14;
}

.industrial-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.industrial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,15,20,.85),
    rgba(11,15,20,.55),
    rgba(11,15,20,.9)
  );
  z-index: 1;
}

/* ===============================
   HERO CONTENT
================================ */
.industrial-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 0 20px;
  text-align: center;
}

.industrial-container .h1 {
  margin: 18px 0 14px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
}

.industrial-container .lead {
  max-width: 820px;
  margin: 0 auto 28px;
  color: rgba(245,247,251,.75);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===============================
   SECTIONS
================================ */
.industrial-section {
  padding: 90px 20px;
  background: #0b0f14;
}

.industrial-dark {
  padding: 90px 20px;
  background: radial-gradient(
    1200px 600px at 50% -20%,
    rgba(0,255,204,.12),
    transparent 60%
  ), #0a0e13;
}

.industrial-section h2,
.industrial-dark h2 {
  text-align: center;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 50px;
}

/* ===============================
   GRID
================================ */
.industrial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

/* ===============================
   CARDS
================================ */
.industrial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(10px);
  transition: transform .3s ease, box-shadow .3s ease, border .3s ease;
}

.industrial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,204,.45);
  box-shadow: 0 18px 45px rgba(0,0,0,.55);
}

.industrial-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #00ffcc;
}

.industrial-card p {
  margin: 0 0 14px;
  color: rgba(245,247,251,.72);
  line-height: 1.65;
}

.industrial-card ul {
  margin: 0 0 16px;
  padding-left: 18px;
}

.industrial-card li {
  margin-bottom: 8px;
  color: rgba(245,247,251,.7);
}

/* ===============================
   PRICE
================================ */
.price {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: #00ffcc;
  font-size: 16px;
}

/* ===============================
   CTA CENTER
================================ */
.cta-center {
  margin-top: 60px;
  text-align: center;
}

/* ===============================
   KICKER (BARRERITA)
================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #00ffcc;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ffcc;
  box-shadow: 0 0 14px #00ffcc;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .industrial-section,
  .industrial-dark {
    padding: 70px 16px;
  }

  .industrial-card {
    padding: 22px;
  }

  .hero-actions {
    gap: 10px;
  }
}

@media (min-width: 1600px) {
  .industrial-container {
    max-width: 1300px;
  }
}
