/* Industries Section on Homepage */
.industries-section {
    padding: 120px 20px 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    scroll-margin-top: 72px;
}

.industries-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.industries-section h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #7C3AED; /* Gufi purple - solid color instead of gradient */
}

.industries-section .subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.industry-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #7C3AED; /* Gufi purple */
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15); /* Gufi purple shadow */
}

.industry-card:hover::before {
    transform: translateX(0);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: rgba(124, 58, 237, 0.1); /* Gufi purple light background */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 1.5rem;
}

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: #6B7280;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
    font-size: 0.95rem;
}

.industry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.industry-feature {
    background: rgba(124, 58, 237, 0.1);
    color: #7C3AED;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.industry-link {
    color: #7C3AED;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.industry-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-link {
    gap: 1rem;
}

.industry-card:hover .industry-link::after {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .industries-section h2 {
        font-size: 2rem;
    }

    .industries-section .subtitle {
        font-size: 1.125rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        padding: 1.5rem;
    }

    .industry-icon {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
}