:root {
    --red: #c53535;
    --red-dark: #b52f2f;
    --white: #fff;
    --red-deeper: #a72a2a;
    --text: #ffffff;
    --muted: rgba(255,255,255,.85);
    --ring-1: rgba(0,0,0,.08);
    --ring-2: rgba(0,0,0,.05);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: #fff;
}

.cta-footer {
    position: relative;
    background: var(--red);
    color: var(--text);
    /* overflow:hidden;*/
    padding: 72px 0 32px;
    z-index: 9999;
    top: 190px;
}

    /* wave shape */
    .cta-footer .wave {
        position: absolute;
        top: -50px;
        left: 0;
        width: 100%;
        height: 220px;
        pointer-events: none;
        opacity: 1;
    }

        .cta-footer .wave path {
            fill: var(--white);
        }

    /* subtle darker overlay band like the screenshot */
    .cta-footer::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(1000px 300px at 80% 30%, rgba(0,0,0,.12), transparent 55%), radial-gradient(900px 260px at 70% 40%, rgba(255,255,255,.06), transparent 60%);
        pointer-events: none;
    }

.wrap {
    position: relative;
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.content {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 48px;
    align-items: center;
}

h2 {
    margin: 0 0 26px;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    font-size: clamp(34px, 3.3vw, 58px);
    letter-spacing: .2px;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 46px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #fff;
    color: var(--red-dark);
    border: 2px solid rgba(255,255,255,.35);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
    transition: transform .12s ease, box-shadow .12s ease;
    user-select: none;
}

    .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(0,0,0,.12);
    }

    .btn svg {
        width: 16px;
        height: 16px;
        flex: 0 0 auto;
    }

/* right “badge” circle with rings */
.badge-wrap {
    justify-self: end;
    position: relative;
    width: min(430px, 46vw);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    transform: translateY(-34px);
    bottom: 160px;
}

    .badge-wrap::before,
    .badge-wrap::after {
        content: "";
        position: absolute;
        inset: -20px;
        border-radius: 999px;
        background: rgba(0,0,0,.06);
        filter: blur(.2px);
    }

    .badge-wrap::after {
        inset: -50px;
        background: rgba(0,0,0,.035);
    }

/* footer row */
.footer-row {
    margin-top: -21px;
    padding-top: 14px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    position: absolute;
    justify-content: flex-end;
}

.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    font-size: 15px;
    color: var(--muted);
}

    .nav a {
        color: var(--muted);
        text-decoration: none;
    }

        .nav a:hover {
            text-decoration: underline;
        }

.copyright {
    text-align: center;
    flex: 1;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.social {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

    .social a {
        width: 42px;
        height: 42px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255,255,255,.35);
        color: rgba(255,255,255,.9);
        text-decoration: none;
    }

    .social svg {
        width: 18px;
        height: 18px;
    }

/* responsive */
@media (max-width: 980px) {
    .content {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .badge-wrap {
        justify-self: center;
        width: min(420px, 78vw);
        transform: translateY(0);
        margin-top: 10px;
    }

    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .copyright {
        width: 100%;
        text-align: left;
        opacity: .85;
    }

    .social {
        align-self: flex-end;
    }
}
