/* ═══════════════════════════════════════════════════════════════
   INDUSTRIES (landing) — intro + tile grid linking to the 8
   individual industry detail pages (page-industry-*.php).
   ═══════════════════════════════════════════════════════════════ */

.page-hero{background:linear-gradient(rgba(6,14,31,.78) 0%,rgba(6,14,31,.92) 100%),url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;}

.ind-hero{padding:130px 5% 72px;min-height:auto;position:relative;overflow:hidden;}
.ind-hero .page-hero-grid{opacity:.45;}
.ind-hero .page-hero-glow{top:-140px;left:50%;transform:translateX(-50%);width:720px;height:520px;opacity:.95;}
.ind-hero .page-hero-inner{position:relative;z-index:2;max-width:1200px;margin:0 auto;}
.ind-hero .page-hero-label{margin-bottom:20px;}
.ind-hero h1{font-family:var(--ff-head);font-size:clamp(34px,4.2vw,58px);font-weight:800;color:#fff;line-height:1.06;letter-spacing:-.02em;margin-bottom:22px;max-width:760px;}
.ind-hero h1 em{font-style:normal;color:var(--blue3);}
.ind-hero p{font-size:15.5px;font-weight:300;line-height:1.7;color:rgba(255,255,255,.78);max-width:620px;margin-bottom:32px;}
.ind-hero .sol-hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:8px;}
.ind-hero .sol-hero-actions .btn-outline{border-color:rgba(255,255,255,.28);color:#fff;}

/* ── Executive summary (pull-quote layout, mirrors Solutions) ── */
.ind-intro-grid{display:grid;grid-template-columns:1fr;gap:22px;max-width:900px;}
.ind-pull{font-family:var(--ff-head);font-size:clamp(19px,2.1vw,25px);font-weight:700;color:var(--text);line-height:1.45;letter-spacing:-.01em;margin-bottom:20px;}
.ind-pull em{font-style:italic;color:var(--blue2);}
.ind-intro-body{font-size:14.5px;font-weight:300;line-height:1.75;color:var(--textm);}
.ind-intro-body p{margin-bottom:14px;}
.ind-intro-body p:last-child{margin-bottom:0;}

/* ── Industry tile grid — photo-led cards, same pattern as Solutions' Business Unit grid ── */
.ind-unit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:44px;}
.ind-unit-card{position:relative;border-radius:var(--radius);overflow:hidden;aspect-ratio:4/5;background:center/cover no-repeat;display:flex;flex-direction:column;justify-content:flex-end;transition:transform .2s;}
.ind-unit-card:hover{transform:translateY(-4px);}
.ind-unit-card::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(6,14,31,0.08) 0%,rgba(6,14,31,0.42) 55%,rgba(6,14,31,0.92) 100%);}
.ind-unit-icon{position:relative;z-index:1;width:38px;height:38px;border-radius:9px;background:rgba(255,255,255,0.12);backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,0.22);display:flex;align-items:center;justify-content:center;color:#fff;margin:18px 0 0 18px;flex-shrink:0;}
.ind-unit-body{position:relative;z-index:1;padding:20px 20px 22px;}
.ind-unit-title{font-family:var(--ff-head);font-size:16.5px;font-weight:700;color:#fff;margin-bottom:8px;letter-spacing:-.01em;line-height:1.2;}
.ind-unit-desc{font-size:12.5px;font-weight:300;line-height:1.6;color:rgba(255,255,255,0.72);margin-bottom:14px;}
.ind-unit-link{font-size:12px;font-weight:600;color:var(--blue3);display:inline-flex;align-items:center;gap:5px;}

/* ── Responsive ── */
@media(max-width:960px){
  .ind-hero{padding:96px 28px 64px;min-height:auto;}
  .ind-hero .page-hero-glow{display:none;}
  .ind-unit-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:600px){
  .ind-unit-grid{grid-template-columns:1fr;}
}
