.industries-hero {
    padding: 9rem 2rem 4rem;
    background: var(--navy);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.industries-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.industries-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.industries-hero p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.08rem;
    line-height: 1.7;
}

.industries-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1.5rem 5rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.industry-card {
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: white;
    color: var(--gray-900);
    text-decoration: none;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 18px 45px rgba(99, 102, 241, 0.12);
}

.industry-card-kicker {
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.industry-card h2 {
    margin-top: 0.7rem;
    font-size: 1.55rem;
    line-height: 1.2;
}

.industry-card p {
    margin-top: 0.8rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.industry-card-link {
    margin-top: auto;
    padding-top: 1.25rem;
    color: var(--primary);
    font-weight: 800;
}

.industries-cta {
    margin-top: 2.5rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--navy);
    color: white;
    text-align: center;
}

.industries-cta p {
    margin: 0.65rem auto 1.2rem;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 720px) {
    .industries-grid { grid-template-columns: 1fr; }
    .industries-hero { padding-top: 7.5rem; }
}
