.commissions-section {
    padding: 96px 0;
    text-align: center;
    margin-top: 90px;
}

.commissions-container {
    max-width: 1224px; /* 4*285 + 3*28 = 1224 */
    margin: 0 auto;
    padding: 0 20px;
}

.commissions-title {
    font-family: 'Aileron', sans-serif;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 400;
    color: #ffffff;
    margin: 0 auto 20px;
    max-width: 1200px;
    text-transform: uppercase;
}

.commissions-subtitle {
    font-family: 'Abel', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 24px;
    line-height: 1.3333;
    color: #E5E6ED;
    margin: 0 auto 56px;
    max-width: 1200px;
}

/* Layout: 4 tarjetas de 285px como en Figma */
.commissions-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 285px);
    gap: 28px;
    justify-content: center;
    max-width: 1224px; /* (4 * 285px) + (3 * 28px) */
    margin: 0 auto;
}

.commission-card.staggered {
    margin-top: 50px;
}

.commission-card {
    background: linear-gradient(179deg, rgb(67 221 157 / 70%) 10%, #2b2d37 60%);
    border: 1px solid rgba(94, 225, 159, 0.35);
    border-top: 5px solid #67ffb3;
    border-radius: 20px;
    padding: 15px 45px;
    width: 275px;
    height: 222px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: #FFFFFF;
    text-align: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.commission-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.commissions-title .gradient-text {
    background: linear-gradient(135deg, #11CABE 0%, #5FE4A1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.commission-card-title {
    font-family: 'Zen Maru Gothic';
    font-size: 25px;
    font-weight: 700;
    color: #5EE19F;
    margin-bottom: -7px;
    text-transform: uppercase;
}

.commission-card-subtitle {
    font-size: 16px;
    color: #E5E6ED;
}

/* Responsivo */
@media (max-width: 1200px) {

    .commissions-title, .commissions-subtitle {
        max-width: 1000px;
        padding: 0px 25px;
    }

    .commissions-cards-container {
        max-width: 545px;
        grid-template-columns: repeat(2, minmax(260px, 1fr));
    }
    .commission-card {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 1010px) {
    .commissions-section {
        padding: 96px 0;
        text-align: center;
        margin-top: 0px;
    }
}

@media (max-width: 640px) {
    .commissions-cards-container {
        max-width: 290px;
        grid-template-columns: 1fr;
    }
    .commission-card {
        height: 190px;
    }
}