.footer-background-text {
    font-size: clamp(5rem, 18vw, 15rem);
    font-weight: 700;
    color: var(--background-dark);
    text-align: center;
    line-height: 1;
    user-select: none;
    padding: 60px 0;
}

footer {
    position: relative;
    padding: 0 0 80px 0;
    text-align: center;
    margin-top: 0;
    border-top: none;
    background: transparent;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -25%;
    width: 150%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--background-medium) 0%, var(--background-light) 100%);
    border-top-left-radius: 50% 120px;
    border-top-right-radius: 50% 120px;
}

footer p {
    color: var(--text-tertiary);
    margin-bottom: 20px;
    font-size: 0.95em;
    font-weight: 400;
}

/* --- Footer Responsive --- */