/* ==============================================
   INDUSTRIES HERO
   ============================================== */

.industries-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: var(--color-navy);
}

.industries-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.industries-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .1;
}

.industries-hero .container {
    position: relative;
    z-index: 2;
}

.industries-hero-content {
    max-width: 760px;
}

.industries-hero-content .page-tag {
    background: rgba(255,255,255,.1);
    color: #93C5FD;
}

.industries-hero-content h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--color-white);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.09;
    margin-bottom: var(--space-6);
    letter-spacing: -0.03em;
}

.industries-hero-content p {
    color: rgba(255,255,255,.75);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-10);
    max-width: 640px;
}

.industries-hero-stats {
    display: flex;
    gap: var(--space-6);
    margin-top: var(--space-10);
    flex-wrap: wrap;
}

.ih-stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.ih-stat strong {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--color-white);
    font-weight: var(--font-weight-extrabold);
    line-height: 1;
}

.ih-stat span {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,.55);
    font-weight: var(--font-weight-medium);
}

/* ── Responsive ── */
@media (max-width: 760px) {
    .industries-hero { padding: 120px 0 70px; }
    .ih-stat strong { font-size: 1.75rem; }
}
