/* Case Study Premium Styles */
:root {
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --surface-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-muted: #94a3b8;
}

.case-study-page {
    background-color: #0f172a;
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
}



/* Hero Section */
.cs-hero {
    padding: 120px 0 60px;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent),
        radial-gradient(circle at bottom left, rgba(168, 85, 247, 0.15), transparent);
    text-align: center;
}

.cs-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--primary-gradient);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cs-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cs-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Content Sections */
.cs-section {
    padding: 80px 0;
    background: #0f172a !important;
}

.cs-card {
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: transform 0.3s ease;
}

.cs-card h3 {
    color: #ffffff;
    font-weight: 700;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cs-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
}

.cs-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: #ffffff;
}

.cs-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #f8fafc;
}

.cs-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-glass);
}

.cs-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f1f5fa;
}

/* Tech Stack */
.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-pill {
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    font-size: 0.9rem;
    font-weight: 500;
    color: #f1f5f9;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .cs-title {
        font-size: 2.5rem;
    }
}