/* Ready CTA – 79b21b64 */

.rcta-79b21b64-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.rcta-79b21b64-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.rcta-79b21b64-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.rcta-79b21b64-content {
    flex: 1;
    max-width: 700px;
}

.rcta-79b21b64-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1b2b4b; /* Navy */
    margin: 0 0 12px 0;
    line-height: 1.25;
    text-decoration: none !important;
}

.rcta-79b21b64-subheading {
    font-size: 16px;
    color: #1b2b4b; /* Navy */
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.rcta-79b21b64-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    margin-bottom: 28px;
}

.rcta-79b21b64-check-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1b2b4b; /* Navy */
    white-space: nowrap;
}

.rcta-79b21b64-check-icon {
    color: #1b2b4b; /* Navy */
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.rcta-79b21b64-btn {
    display: inline-block;
    background-color: #1b2b4b; /* Navy */
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.rcta-79b21b64-btn:hover {
    background-color: #0d1627; /* Darker Navy */
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

/* Badge */
.rcta-79b21b64-badge-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rcta-79b21b64-badge {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #1b2b4b; /* Navy */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: rcta79b21b64-pulse 3s ease-in-out infinite;
}

.rcta-79b21b64-badge-leaf {
    font-size: 18px;
    margin-bottom: 4px;
}

.rcta-79b21b64-badge-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Animations */
@keyframes rcta79b21b64-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.rcta-79b21b64-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.rcta-79b21b64-content.rcta-79b21b64-visible {
    opacity: 1;
    transform: translateY(0);
}

.rcta-79b21b64-badge-wrap {
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.rcta-79b21b64-badge-wrap.rcta-79b21b64-visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Responsive */

@media (min-width: 1025px) {
    .rcta-79b21b64-wrapper {
        background-position: left 30%;
    }
}

@media (max-width: 1024px) {
    .rcta-79b21b64-wrapper {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .rcta-79b21b64-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .rcta-79b21b64-content {
        max-width: 100%;
    }

    .rcta-79b21b64-checks {
        justify-content: center;
    }

    .rcta-79b21b64-heading {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .rcta-79b21b64-heading {
        font-size: 24px;
    }

    .rcta-79b21b64-checks {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .rcta-79b21b64-btn {
        padding: 14px 30px;
        font-size: 13px;
    }

    .rcta-79b21b64-badge {
        width: 120px;
        height: 120px;
    }

    .rcta-79b21b64-badge-text {
        font-size: 10px;
    }
}
