/* Solutions page specific styles (moved from inline) */
.industry-card { background: white; border-radius: 16px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.1); transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.industry-card:hover { transform: translateY(-8px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.industry-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary-color), #1A9B96); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; margin-bottom: 1.5rem; }
.pain-point { background: #FFE5E5; border-left: 4px solid #E74C3C; padding: 1rem; margin: 1rem 0; border-radius: 0 8px 8px 0; }
.solution-point { background: #E8F8F7; border-left: 4px solid var(--primary-color); padding: 1rem; margin: 1rem 0; border-radius: 0 8px 8px 0; }
.outcome-stats { display: flex; justify-content: space-around; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #ECF0F1; }
.stat { text-align: center; }
.stat-number { font-size: 1.5rem; font-weight: bold; color: var(--primary-color); }
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.feature-list li { display: flex; align-items: flex-start; margin-bottom: 0.75rem; padding-left: 0; }
.feature-list li::before { content: '✓'; color: var(--primary-color); font-weight: bold; margin-right: 0.75rem; margin-top: 0.1rem; }
.industry-nav { background: white; padding: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 70px; z-index: 100; }
.industry-nav ul { display: flex; list-style: none; padding: 0; margin: 0; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.industry-nav a { color: var(--text-dark); text-decoration: none; padding: 0.5rem 1rem; border-radius: 25px; transition: all 0.3s ease; font-weight: 500; }
.industry-nav a:hover, .industry-nav a.active { background: var(--primary-color); color: white; }
@media (max-width: 768px) { .industry-nav ul { gap: 0.5rem; } .industry-nav a { font-size: 0.9rem; padding: 0.4rem 0.8rem; } .outcome-stats { flex-direction: column; gap: 1rem; } }





