/* ===================================================================
   PAGE-SPECIFIC STYLES: INDUSTRIES
   =================================================================== */

/* ========== PAGE HEADER (Identique à solutions.css) ========== */
.page-header {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header .subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ========== INDUSTRIES GRID SECTION ========== */
.industries-grid-section {
    padding: 6rem 0;
}

.industry-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.industry-icon {
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.25rem;
    color: var(--primary);
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.2), rgba(6, 182, 212, 0.2));
    transform: scale(1.1);
}

.industry-card h3 {
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: var(--gray);
}