.cases-section {
    padding: 100px 40px 150px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.cases-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.case-card {
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 3px solid var(--black);
    width: 100%;
    box-sizing: border-box;
}

.case-card:hover {
    transform: translate(-8px, -8px);
}

.case-card:nth-child(2n) {
    margin-top: 100px;
}

.case-image {
    height: 400px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.case-card:nth-child(2) .case-image { background: var(--yellow); }
.case-card:nth-child(3) .case-image { background: var(--black); }
.case-card:nth-child(4) .case-image { background: var(--accent); }
.case-card:nth-child(5) .case-image { background: var(--yellow); }
.case-card:nth-child(6) .case-image { background: var(--black); }

.case-content {
    padding: 50px;
}

.case-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.case-title {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.case-description {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 40px;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-value {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-section {
    padding: 150px 40px;
    background: var(--accent);
    color: var(--white);
    clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
    margin-top: -60px;
    margin-bottom: -60px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.results-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.results-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(50px, 8vw, 100px);
    line-height: 1.1;
    margin-bottom: 80px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    width: 100%;
    box-sizing: border-box;
}

.result-item {
    text-align: center;
}

.result-number {
    font-family: 'DM Serif Display', serif;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 15px;
}

.result-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-section {
    padding: 150px 40px;
    background: var(--white);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.cta-section .cta-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(50px, 8vw, 90px);
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--black);
}

.cta-section .cta-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 50px;
}

.cta-section .cta-button {
    display: inline-block;
    padding: 25px 60px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 3px solid var(--black);
}

.cta-section .cta-button:hover {
    background: var(--accent);
    transform: translate(-4px, -4px);
}

@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .case-card:nth-child(2n) {
        margin-top: 0;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cases-section,
    .results-section,
    .cta-section {
        padding: 100px 20px;
    }

    .case-card:hover {
        transform: none;
    }

    .case-content {
        padding: 30px 20px;
    }

    .case-title {
        font-size: 28px;
    }

    .case-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-number {
        font-size: 50px;
    }

    .cta-section .cta-button {
        padding: 20px 40px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cta-section .cta-button:hover {
        transform: none;
    }
}
