/* ============== INDUSTRY BLOCKS ============== */
.industry-block { padding: 90px 0; }
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.industry-aside { position: sticky; top: 140px; }
.industry-aside .i-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cobalt); margin-bottom: 18px;
}
.industry-aside h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}
.industry-aside .i-lede {
  font-size: 15.5px; color: var(--soft); line-height: 1.65;
  margin-bottom: 24px;
}

.industry-body h3 {
  font-size: 18px; margin: 32px 0 18px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mute);
}
.industry-body h3:first-child { margin-top: 0; }

/* Challenges grid */
.challenges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.challenge {
  padding: 22px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-warn);
}
.s-paper .challenge { background: #fff; }
.s-white .challenge { background: var(--paper); }
.challenge h4 {
  font-size: 15px; font-weight: 700;
  color: var(--l-text); margin-bottom: 8px;
  font-family: 'Inter Tight', sans-serif;
}
.challenge p {
  font-size: 13.5px; color: var(--soft); line-height: 1.55;
}

/* What-we-deliver list */
.deliver-list {
  list-style: none; display: grid; gap: 10px;
}
.deliver-list li {
  padding: 12px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 14px; color: var(--soft);
}
.s-paper .deliver-list li { background: #fff; }
.deliver-list li strong {
  color: var(--cobalt); font-weight: 600;
  display: inline-block; margin-right: 6px;
}

/* Reference flow */
.ref-flow {
  padding: 20px 24px;
  background: var(--navy);
  color: var(--d-soft);
  border-radius: var(--r-md);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px; line-height: 2;
}
.ref-flow span {
  display: inline-block;
  padding: 3px 10px; margin: 2px 0;
  background: rgba(0,112,243,0.18);
  color: #5BA8FF; border-radius: 4px;
}

/* Why list */
.why-list {
  list-style: none; display: grid; gap: 10px;
}
.why-list li {
  font-size: 14.5px; color: var(--l-text);
  padding-left: 22px; position: relative;
  line-height: 1.6;
}
.why-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--cobalt); font-weight: 700;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .industry-grid { grid-template-columns: 1fr; gap: 32px; }
  .industry-aside { position: static; }
  .challenges { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .industry-block { padding: 60px 0; }
  .ref-flow { font-size: 11.5px; padding: 16px 18px; }
}
