/* Use Case Detail Page Styles */

/* Global Font */
body {
    font-family: 'Rubik', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Hero Section */
.usecase-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.hero-icon {
    margin-bottom: 1.5rem;
}

.icon-xxl {
    width: 80px;
    height: 80px;
    stroke: var(--primary-color);
    stroke-width: 1.5;
}

.usecase-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Nav Right */
.nav-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
    background: white;
}

.problem-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.problem-card {
    padding: 2rem;
    background: #fff5f5;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-card i {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.problem-card p {
    color: #666;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.solution-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.solution-feature {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.solution-feature.reverse {
    grid-template-columns: 2fr 1fr;
}

.solution-feature.reverse .solution-image {
    order: 2;
}

.solution-feature.reverse .solution-content {
    order: 1;
}

.solution-image {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.solution-icon {
    width: 120px;
    height: 120px;
    stroke: var(--primary-color);
    stroke-width: 1.5;
}

.solution-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.solution-content  > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #444;
}

.benefit-list i {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c92a2a 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 1;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .usecase-hero {
        padding: 100px 0 40px;
    }
    
    .usecase-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .icon-xxl {
        width: 60px;
        height: 60px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-feature,
    .solution-feature.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-feature.reverse .solution-image {
        order: 1;
    }
    
    .solution-feature.reverse .solution-content {
        order: 2;
    }
    
    .solution-content h3 {
        font-size: 1.5rem;
    }
    
    .solution-icon {
        width: 80px;
        height: 80px;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 0.5rem;
    }
}
