.section-404 {
    padding: 100px 0 120px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.error-404-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    position: relative;
}

.error-404__code {
    font-family: var(--font-display);
    font-size: clamp(140px, 22vw, 280px);
    font-weight: 700;
    line-height: 1;
    color: var(--color-lime-drop);
    letter-spacing: -0.04em;
    user-select: none;
}

.error-404__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 580px;
}

.error-404__eyebrow {
    color: var(--color-jungle-green);
}

.error-404__heading {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
    color: var(--color-dark-matter);
}

.error-404__description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-dark-matter);
    opacity: 0.7;
}

.error-404__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}

@media (max-width: 600px) {
    .section-404 {
        padding: 60px 0 80px;
    }

    .error-404__actions {
        flex-direction: column;
        width: 100%;
    }

    .error-404__actions .btn {
        width: 100%;
        justify-content: center;
    }
}
