/* Use Cases specific styles */
.use-cases-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.use-cases-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.use-cases-section {
    padding: 60px 0;
}

.use-case-category {
    margin-bottom: 60px;
}

.use-case-category h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.use-case-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.use-case-header {
    background: var(--light-color);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.use-case-header h3 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.industry-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.use-case-content {
    padding: 2rem;
}

.challenge,
.solution,
.results {
    margin-bottom: 2rem;
}

.challenge:last-child,
.solution:last-child,
.results:last-child {
    margin-bottom: 0;
}

.challenge h4,
.solution h4,
.results h4 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.solution ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.solution li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: var(--secondary-color);
}

/* Integration Section */
.integration-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.integration-section h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.integration-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.integration-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.integration-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.integration-card ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.integration-card li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* CTA Section */
.cta-section-bottom {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-section-bottom h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section-bottom p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .use-cases-hero h1 {
        font-size: 2rem;
    }
    
    .use-case-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .metrics {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .metric {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .use-cases-hero h1 {
        font-size: 1.75rem;
    }

    .use-case-category h2,
    .integration-section h2,
    .cta-section-bottom h2 {
        font-size: 2rem;
    }

    .use-case-header h3 {
        font-size: 1.25rem;
    }

    .industry-tag {
        padding: 0.2rem 0.8rem;
        font-size: 0.75rem;
    }

    .metric-value {
        font-size: 1.75rem;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}