/* ══════════════════════════════════════════
   INDUSTRY PAGES — shared stylesheet
   ══════════════════════════════════════════ */

/* ── Hero ── */
.ind-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--bk);
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}
.ind-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.ind-hero-inner { max-width: 760px; position: relative; z-index: 1; }
.ind-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--g);
  border: 1px solid rgba(123,191,62,.3);
  background: rgba(123,191,62,.08);
  border-radius: 20px;
  padding: .3rem .9rem;
  margin-bottom: 1.4rem;
}
.ind-eyebrow-ico { font-size: 1rem; color: var(--g); }
.ind-eyebrow-ico::before { margin: 0 !important; }
.ind-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1.2rem;
}
.ind-hero h1 em { font-style: normal; color: var(--g); }
.ind-hero p {
  font-size: 1.02rem;
  color: rgba(255,255,255,.55);
  line-height: 1.78;
  max-width: 620px;
  margin-bottom: 2rem;
}

/* ── Sección base ── */
.ind-sec { padding: 72px 5%; }
.ind-sec.dark { background: var(--bk); }
.ind-sec.light { background: #fff; }
.ind-sec.alt { background: var(--bg2); border-top: 1px solid var(--border); }
.ind-inner { max-width: 1100px; margin: 0 auto; }

/* ── Encabezado de sección ── */
.ind-sec-head { text-align: center; margin-bottom: 3rem; }
.ind-sec-head .sec-eyebrow { margin-bottom: .6rem; }
.ind-sec-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--bk);
  margin: 0 0 .9rem;
}
.ind-sec-head h2.light { color: #fff; }
.ind-sec-head p { font-size: .95rem; color: var(--muted); max-width: 600px; margin: 0 auto; line-height: 1.75; }
.ind-sec-head p.light { color: rgba(255,255,255,.5); }

/* ── Desafíos (3 cards) ── */
.ind-challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.ind-challenge-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: box-shadow .2s, transform .2s;
}
.ind-challenge-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
  transform: translateY(-3px);
}
.ind-challenge-ico {
  font-size: 1.8rem;
  color: var(--g2);
}
.ind-challenge-ico::before { margin: 0 !important; }
.ind-challenge-card h3 { font-size: .98rem; font-weight: 700; color: var(--bk); margin: 0; }
.ind-challenge-card p { font-size: .85rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ── Soluciones (service cards) ── */
.ind-sol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.ind-sol-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}
.ind-sol-card:hover {
  background: rgba(123,191,62,.07);
  border-color: rgba(123,191,62,.25);
  transform: translateY(-3px);
}
.ind-sol-ico { font-size: 1.8rem; color: var(--g); }
.ind-sol-ico::before { margin: 0 !important; }
.ind-sol-card h3 { font-size: .98rem; font-weight: 700; color: #fff; margin: 0; }
.ind-sol-card p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.65; margin: 0; flex: 1; }
.ind-sol-link { font-size: .78rem; font-weight: 700; color: var(--g); letter-spacing: .04em; margin-top: auto; }

/* ── Por qué Structum ── */
.ind-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ind-why-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--bk); margin: 0 0 1.2rem; }
.ind-why-text p { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.ind-why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.ind-why-stat {
  background: #fff;
  padding: 1.6rem 1.4rem;
  text-align: center;
}
.ind-why-stat .ws-num { font-size: 2.2rem; font-weight: 800; color: var(--g2); line-height: 1; display: block; }
.ind-why-stat .ws-lbl { font-size: .78rem; color: var(--muted); line-height: 1.4; margin-top: .3rem; }

/* ── ind-tag como link ── */
a.ind-tag {
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
a.ind-tag:hover {
  background: rgba(123,191,62,.2);
  border-color: rgba(123,191,62,.5);
  color: var(--g2);
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .ind-why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .ind-hero { padding: 90px 5% 50px; min-height: unset; }
  .ind-hero h1 { font-size: 1.8rem; }
  .ind-challenges-grid { grid-template-columns: 1fr; }
  .ind-sol-grid { grid-template-columns: 1fr 1fr; }
  .ind-sec { padding: 48px 5%; }
}
@media (max-width: 500px) {
  .ind-sol-grid { grid-template-columns: 1fr; }
  .ind-why-stats { grid-template-columns: 1fr 1fr; }
}
