.error-404 {
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-404__inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.error-404__code {
    display: block;
    font-family: var(--font-heading);
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-green), #00b854);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.error-404__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.error-404__text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-gray);
    line-height: 1.5;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .error-404 {
        padding: 80px 0;
    }

    .error-404__code {
        font-size: 100px;
    }

    .error-404__title {
        font-size: 24px;
    }
}
