/* ============================================
   Case Study Section - Website Showcase
   ============================================ */
.case-study {
    padding: 8rem 6rem;
    width: 100%;
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(20, 10, 5, 1) 100%);
}

.case-study-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.case-study-header-section {
    text-align: center;
    margin-bottom: 5rem;
}

.case-study-label {
    display: inline-block;
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.case-study-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    color: var(--white);
}

.case-study-tagline {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: var(--gray);
    font-weight: 300;
}

.case-study-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

/* Browser Mockup */
.browser-mockup {
    width: 100%;
    max-width: 1200px;
    background: #1a1a1a;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.browser-header {
    background: #2a2a2a;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }

.browser-url {
    flex: 1;
    background: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: var(--gray);
    font-size: 0.875rem;
    text-align: center;
}

.browser-content {
    background: #fff;
    overflow: hidden;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Case Study Stats Grid */
.case-study-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: 100%;
}

.case-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 0;
    transition: all 0.3s ease;
    border-right: none;
}

.case-stat:last-child {
    border-right: 1px solid rgba(255, 107, 53, 0.15);
}

.case-stat:hover {
    background: rgba(255, 107, 53, 0.08);
    transform: translateY(-3px);
}

.case-stat-number {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.case-stat-label {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 1024px) {
    .case-study {
        padding: 6rem 3rem;
    }
    
    .case-study-header-section {
        margin-bottom: 4rem;
    }
    
    .case-study-stats-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .case-study {
        padding: 5rem 1.5rem;
    }
    
    .case-study-header-section {
        margin-bottom: 3rem;
    }
    
    .case-study-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .browser-header {
        padding: 0.75rem 1rem;
    }
    
    .browser-dots span {
        width: 10px;
        height: 10px;
    }
}
