/* Industries Pages Styles */
.pg-hero {
  padding: 8rem 0 5rem;
  background: var(--n900);
  background-image: radial-gradient(circle, rgba(29,158,117,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  text-align: center;
}
.pg-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.pg-hero__h {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  font-weight: 800;
  color: var(--wh);
  line-height: 1.1;
  letter-spacing: -0.035em; word-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.pg-hero__sub {
  font-family: var(--fb);
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin: 0 auto;
}
.title-accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--t300) 0%, var(--t400) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Industry Grid (Index) */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ind-card {
  display: block;
  background: var(--wh);
  border: 1px solid var(--g200);
  border-radius: var(--r2xl);
  padding: 2.5rem;
  text-decoration: none;
  transition: transform var(--spring), box-shadow var(--ease), border-color var(--ease);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.ind-card:hover {
  transform: translateY(-6px);
  border-color: var(--t200);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(29, 158, 117, 0.05);
}
.ind-ico {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: var(--rlg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t400);
  margin-bottom: 1.5rem;
}
.ind-h {
  font-family: var(--fd);
  font-size: 1.4rem;
  color: var(--n900);
  margin-bottom: 0.5rem;
}
.ind-p {
  font-size: 1rem;
  color: var(--g600);
  line-height: 1.5;
}

/* Individual Industry Hero */
.ind-hero {
  padding: 8rem 0 5rem;
  background: var(--n900);
  text-align: center;
}
.ind-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.ind-hero__h {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--wh);
  line-height: 1.1;
  letter-spacing: -0.035em; word-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.ind-hero__sub {
  font-family: var(--fb);
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin: 0 auto 2rem;
}

/* Solutions Grid */
.bg-cream {
  background: var(--cream);
}
.sec-hd {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.ind-sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ind-sol-card {
  background: var(--wh);
  border: 1px solid var(--g200);
  border-radius: var(--r2xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--spring), box-shadow var(--ease), border-color var(--ease);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.ind-sol-card:hover {
  transform: translateY(-4px);
  border-color: var(--t200);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.isc-h {
  font-family: var(--fd);
  font-size: 1.3rem;
  color: var(--n900);
  margin-bottom: 0.75rem;
}
.isc-p {
  font-size: 1rem;
  color: var(--g600);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-sol-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .ind-grid { grid-template-columns: 1fr; }
}
