.cta-stop {
    padding: 76px 0 81px;
    background: url(/snippet-template/21A57608-2467-4FFC-AC1B-0433C76B834B/images/cta-bg.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    position: relative;
}
section.cta-stop:before {
    content: "";
    background: url(/snippet-template/21A57608-2467-4FFC-AC1B-0433C76B834B/images/cta-top-right-img.svg);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: -1;
}

/* Decorative blobs */
.cta-stop__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}
.cta-stop__card {
    border-radius: 16px;
    padding: 61px 132px 42px;
    text-align: center;
    box-shadow: 0px 0px 3px 2px #0000000D;
    backdrop-filter: blur(7px);
    background: rgba(255, 255, 255, 0.87);
}
.cta-stop__title {
    font-size: 35px;
    font-weight: 600;
    color: #000;
    line-height: 40px;
    margin: 0 0 9px;
}
.cta-stop__subtitle p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    line-height: 27px;
    margin: 0;
    max-width: 723px;
    margin-left: auto;
    margin-right: auto;
}
.cta-stop__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  	margin-top: 22px;
    margin-bottom: 78px;
}
a.cta-stop__btn {
        display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease, background 0.2s ease;
    border: 1px solid #111827
}
a.cta-stop__btn--dark {
    background: #111111;
    color: #ffffff;
}
a.cta-stop__btn--outline {
    color: rgba(17, 24, 39, 1);
    background: transparent;
  transition: all 0.3s ease 0s;
}
a.cta-stop__btn--outline:hover {
    color: #fff;
    background: #000;
}
a.cta-stop__btn:hover {
    text-decoration: none; 
    color: #fff;
    background-color: #272727;
}
hr.cta-stop__divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 0 31px;
}
.cta-stop__facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 48px;
    text-align: left;
    max-width: 680px;
    margin: 0 auto;
}
.cta-stop__facts-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cta-stop__fact {
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 20px;
    margin: 0;
}
.cta-stop__fact strong {
    font-weight: 600;
    color: #000;
}

@media (max-width: 768px) {
    .cta-stop {
        padding: 48px 20px;
    }
    .cta-stop__card {
        padding: 36px 28px;
    }
    .cta-stop__title {
        font-size: 28px;
    }
    .cta-stop__blob--navy {
        width: 200px;
        height: 180px;
    }
    .cta-stop__blob--purple {
        width: 160px;
        height: 160px;
    }
}
@media (max-width: 480px) {
    .cta-stop__card {
        padding: 28px 20px;
    }
    .cta-stop__title {
        font-size: 22px;
    }
    .cta-stop__facts {
        grid-template-columns: 1fr;
    }
    a.cta-stop__btn {
        width: 100%;
    }
    .cta-stop__blob--teal {
        display: none;
    }
}
