.case-studies-section {
    padding: 0rem;
    background: linear-gradient(180deg, #fafdff 0%, #e7eaf2 100%);
    /* No border-radius for squared section edges */
    box-shadow: 0 4px 32px 0 rgba(160,170,190,0.08), 0 1.5px 3px rgba(70,90,125,0.05);
    margin-bottom: 1.2rem;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.case-studies-title {
    font-size: 2.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.1rem;
    letter-spacing: 0.01em;
    font-family: 'Montserrat', 'Inter', 'Segoe UI', Arial, sans-serif;
    color: var(--platinum-title) !important;
    text-shadow: 0 1px 6px rgba(170,180,200,0.08);
}

.case-studies-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.case-study-card {
    background: linear-gradient(120deg, #f6f8fa 60%, #eaeff5 100%);
    padding: 1.8rem 1.5rem;
    border-radius: 18px; /* Card is rounded, section is not */
    width: 290px;
    min-width: 240px;
    text-align: center;
    box-shadow: 0 3px 18px rgba(180,190,205,0.09);
    border: 1.2px solid #e3e7eb;
    transition: transform 0.18s cubic-bezier(.42,0,.58,1), box-shadow 0.18s;
    color: #42506b;
}

    .case-study-card:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 8px 38px 0 rgba(146,154,173,0.12), 0 1.5px 3px 0 rgba(40,60,90,0.05);
        border-color: #bcc5d3;
        background: linear-gradient(120deg, #f3f6fa 70%, #e6ecf4 100%);
    }

    /* Optional: subtitle or company name */
    .case-study-card .case-study-company {
        font-size: 1.09rem;
        color: #8e98a7;
        margin-bottom: 0.7rem;
        letter-spacing: 0.01em;
        font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    }

    .case-study-card .case-study-description {
        font-size: 1.02rem;
        color: #455069;
        margin-bottom: 0.9rem;
    }

@media (max-width: 900px) {
    .case-studies-grid {
        gap: 0.8rem;
    }

    .case-study-card {
        width: 95vw;
        min-width: 0;
        max-width: 480px;
        margin-bottom: 1.2rem;
    }

    .case-studies-section {
        padding: 2rem 0.5rem;
    }
}
