/* Case Studies Page Styles */

.case-study-hero {
    background: linear-gradient(135deg, #52adb6 0%, #3d88ae 100%);
    padding: 120px 0 80px;
    color: #fff;
    text-align: center;
}

.case-study-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.case-study-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Legal Pages (Privacy Policy, Terms of Service) */
.legal-hero {
    background: linear-gradient(135deg, #52adb6 0%, #3d88ae 100%);
    padding: 120px 0 80px;
    color: #fff;
    text-align: center;
}

.legal-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.legal-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .case-study-hero,
    .legal-hero {
        padding: 100px 0 60px;
    }
    
    .case-study-hero h1,
    .legal-hero h1 {
        font-size: 36px;
    }
    
    .case-study-hero p,
    .legal-hero p {
        font-size: 18px;
    }
}

.case-study-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s;
}

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

.case-client-logo {
    max-width: 200px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 30px;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #52adb6;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #52adb6;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.challenge-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.cs-box {
    padding: 30px;
    border-radius: 8px;
}

.cs-box.challenge {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.cs-box.solution {
    background: #d1ecf1;
    border-left: 4px solid #52adb6;
}

.cs-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-highlights {
    background: #f8f9fa;
    padding: 50px 0;
    margin: 60px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    color: #52adb6;
    margin-bottom: 20px;
}

.feature-item h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.playable-showcase {
    text-align: center;
    padding: 60px 0;
}

.playable-frame {
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.playable-thumb {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.playable-thumb:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-section,
.home-cta-section {
    background: linear-gradient(135deg, #52adb6 0%, #3d88ae 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

.cta-section h3,
.home-cta-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.cta-section p,
.home-cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #52adb6;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    color: #52adb6;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .case-study-hero h1 {
        font-size: 32px;
    }
    
    .case-study-hero p {
        font-size: 16px;
    }
    
    .challenge-solution {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
