.cv-footer {
    background: linear-gradient(0deg, rgb(255, 227, 235) 16%, rgb(255, 255, 255) 100%);
    padding: 28px 0 54px;
}

.cv-footer-newsletter {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
    text-align: center;
}
.cv-footer-newsletter h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--text);
}

.cv-footer-form {
    display: flex;
    width: 100%;
    height: 43px;
    background: var(--white);
    border: 1px solid #ff4b82;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(255, 75, 130, 0.16);
}

.cv-footer-form input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 0 16px;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
}

.cv-footer-form input::placeholder {
    color: #b7b7b7;
}

.cv-footer-form button {
    width: 34px;
    min-width: 34px;
    border: 0;
    background: #ff4b82;
    color: var(--white);
    font-size: 13px;
    cursor: pointer;
}

.cv-footer-columns {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 52px;
    padding-bottom: 34px;
    border-bottom: 2px solid #173c6b;
}

.cv-footer-col h4 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    color: #073272;
}

.cv-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cv-footer-menu li {
    margin-bottom: 11px;
}

.cv-footer-menu a {
    color: #5b00ff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    text-decoration: none;
}

.cv-footer-menu a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.cv-footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.cv-footer-bottom p {
    margin: 0;
    font-size: 20px;
    color: #a3a3a3;
    font-weight: 400;
}

.cv-back-to-top {
    position: fixed;
    right: 34px;
    bottom: 34px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ff5c91;
    background: var(--white);
    color: #ff3f7f;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
}

.cv-back-to-top:hover {
    background: #ff4b82;
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .cv-footer {
        padding: 26px 0 42px;
    }

    .cv-footer-newsletter,
    .cv-footer-columns {
        max-width: 100%;
    }

    .cv-footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 34px;
    }

    .cv-footer-bottom p {
        font-size: 17px;
    }
}

@media (max-width: 575px) {
    .cv-footer-newsletter h3 {
        font-size: 18px;
    }

    .cv-footer-form {
        height: 42px;
    }

    .cv-footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        padding-bottom: 26px;
    }

    .cv-footer-col h4 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .cv-footer-menu li {
        margin-bottom: 8px;
    }

    .cv-footer-menu a {
        font-size: 15px;
    }

    .cv-footer-bottom p {
        font-size: 15px;
        line-height: 1.5;
    }

    .cv-back-to-top {
        right: 18px;
        bottom: 18px;
        width: 40px;
        height: 40px;
    }
}