/* ============================================================================
   industry.css — shared layout for /industry-* pages
   (industry-healthcare, industry-manufacturing, industry-nonprofit, industry-saas)
   Page-specific rules (e.g. .compliance-band on healthcare) stay inline.
   ============================================================================ */

.ind-shell { max-width: 980px; margin: 0 auto; padding: 0 5%; }
.ind-section { padding: 56px 0; }
.ind-h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.ind-h2 .accent { color: var(--green); }
.ind-lede { color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 720px; margin-bottom: 24px; }

/* "Why it's hard" pain-card grid (kept for any future reintroduction) */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.pain-card { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; }
.pain-card h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.pain-card p { color: var(--text-muted); font-size: 13.5px; line-height: 1.6; }

/* "What we build" work list */
.work-list { display: grid; gap: 10px; max-width: 760px; }
.work-list li { list-style: none; padding: 14px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; color: var(--text-muted); font-size: 14px; line-height: 1.55; }
.work-list li::before { content: '·'; color: var(--green); font-weight: 800; margin-right: 8px; }
.work-list li strong { color: var(--text); }

/* "Real engagement" quick-win band */
.win-band { padding: 24px 28px; background: rgba(4,8,12,0.85); border-left: 3px solid var(--green); border-radius: 0 14px 14px 0; max-width: 820px; }
.win-band h3 { color: var(--green); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.win-band p { color: var(--text); line-height: 1.7; font-size: 15px; }
.win-band .meta { font-family: 'Courier New', monospace; font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* FAQ accordion (kept for any future reintroduction) */
details.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 10px; }
details.faq-item summary { cursor: pointer; padding: 16px 20px; display: flex; justify-content: space-between; gap: 14px; color: #fff; font-weight: 700; font-size: 14px; list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; color: var(--green); font-size: 22px; transition: transform 0.2s; }
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item .faq-body { padding: 0 20px 16px; color: var(--text-muted); line-height: 1.7; font-size: 13.5px; }

/* Two-column hero */
.ind-hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px;
  align-items: center; max-width: 1180px; margin: 0 auto;
  position: relative; z-index: 2;
}
.ind-hero-img {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border-accent); aspect-ratio: 4 / 3;
  box-shadow: 0 28px 80px rgba(0,0,0,0.55), 0 0 60px rgba(132,239,90,0.05);
}
.ind-hero-img img { width: 100%; height: 100%; display: block; object-fit: cover; }
.ind-hero-img::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 65%, rgba(4,8,12,0.4) 100%);
}
@media (max-width: 880px) {
  .ind-hero-grid { grid-template-columns: 1fr; gap: 28px; }
}
