.rts-cta {
    padding: 100px 0 100px;
    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.rts-cta: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;
}

.rts-cta__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}
.rts-cta__card {
    border-radius: 16px;
    padding: 60px 93px 50px;
    text-align: center;
    backdrop-filter: blur(7px);
    background: rgba(255, 255, 255, 0.87);
}
.rts-cta__title {
    font-size: 38px;
    font-weight: 600;
    color: #000;
    line-height: 51px;
    margin: 0;
}
.rts-cta__title2 {
  font-size: 29px;
    font-weight: 600;
    color: #000;
    line-height: 51px;
    margin: 0 0 10px;
}
.rts-cta__subtitle p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 21px;
    margin: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature checkmarks row */
.rts-cta__features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 22px;
    margin-bottom: 30px;
}
.rts-cta__feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.85);
    line-height: 22px;
}
.rts-cta__feature::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 10px;
    border-right: 2px solid #111827;
    border-bottom: 2px solid #111827;
    transform: rotate(45deg) translate(-1px, -1px);
    flex-shrink: 0;
  margin-right: 8px;
}

/* Buttons */
.rts-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.rts-cta__actions a.hyk-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    border: none;
    white-space: nowrap;
    text-decoration: none;
    height: 44px;
    line-height: 25px;
    min-width: 180px;
    justify-content: center;
}
.rts-cta__actions a.hyk-btn--dark {
    background: #111827;
    color: #ffffff;
}
.rts-cta__actions a.hyk-btn--ghost {
    background: #ffffff;
    color: #111827;
    border: 1.5px solid #111827;
    transition: all 0.3s ease 0s;
}
.rts-cta__actions a.hyk-btn--dark:hover {
  opacity: 0.9;
}
.rts-cta__actions a.hyk-btn--ghost:hover {
    background: #272727;
    color: #fff;
}
.rts-cta__actions a.hyk-btn:hover svg path {
    fill: #fff;
}

@media (max-width: 900px) {
    .rts-cta__card {
        padding: 48px 48px 60px;
    }
}
@media (max-width: 768px) {
    .rts-cta {
        padding: 48px 20px;
    }
    .rts-cta__card {
        padding: 36px 28px;
    }
    .rts-cta__title {
        font-size: 28px;
        line-height: 38px;
    }
    .rts-cta__features {
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .rts-cta__card {
        padding: 28px 20px 36px;
    }
    .rts-cta__title {
        font-size: 22px;
        line-height: 32px;
    }
    .rts-cta__features {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-left: 8px;
    }
    .rts-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .rts-cta__actions a.hyk-btn {
        width: 100%;
        min-width: unset;
    }
}
