/* ==================== INDUSTRY VISUAL ==================== */
.industry-visual {
    background: var(--light-bg);
    border-radius: var(--radius);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--secondary);
    transition: var(--transition);
}

.industry-visual:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ==================== INDUSTRY LABEL ==================== */
.industry-label {
    display: inline-block;
    background: var(--light-bg);
    color: var(--secondary);
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

/* ==================== RELATED PRODUCT ==================== */
.industry-product {
    background: var(--light-bg);
    border-left: 3px solid var(--secondary);
    padding: 0.75rem 1rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.industry-product a {
    font-weight: 600;
}

/* ==================== CHALLENGES ==================== */
.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.challenge-item i {
    color: var(--secondary);
    font-size: 0.75rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
    padding: 80px 0;
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 767px) {
    .industry-visual {
        height: 200px;
        font-size: 3.5rem;
    }
}
