/* =========================================================
   CLEANNORA CTA — HOMEPAGE V2
========================================================= */

.cn-cta-section {
    width: 100%;
    padding: 55px 0 65px;
    background: #ffffff;
}

.cn-cta-section .container {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   CTA CARD
========================================================= */

.cn-cta-content {
    position: relative;
    overflow: hidden;

    min-height: 255px;
    padding: 36px 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(244, 191, 25, .10),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 100%,
            rgba(255, 255, 255, .05),
            transparent 35%
        ),
        #083D2B;

    border-radius: 22px;

    box-shadow:
        0 18px 42px rgba(8, 61, 43, .12);
}

.cn-cta-content::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -145px;
    bottom: -220px;

    border: 1px solid rgba(244, 191, 25, .12);

    border-radius: 50%;

    pointer-events: none;
}

.cn-cta-content::after {
    content: "";

    position: absolute;

    width: 270px;
    height: 270px;

    right: 25px;
    top: -190px;

    border: 1px solid rgba(255, 255, 255, .05);

    border-radius: 50%;

    pointer-events: none;
}

/* =========================================================
   TEXT
========================================================= */

.cn-cta-text {
    position: relative;
    z-index: 2;

    max-width: 620px;
}

.cn-cta-kicker {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 12px;

    color: #F4BF19;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cn-cta-kicker span {
    width: 35px;
    height: 2px;

    background: #F4BF19;
}

.cn-cta-kicker b {
    font-size: 13px;
    color: #F4BF19;
}

.cn-cta-text h2 {
    margin: 0;

    color: #ffffff;

    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -1.2px;
    font-weight: 800;
}

.cn-cta-text h2 span {
    color: #F4BF19;
}

.cn-cta-text p {
    max-width: 570px;

    margin: 13px 0 0;

    color: rgba(255, 255, 255, .78);

    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   BUTTONS
========================================================= */

.cn-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;

    margin-top: 18px;
}

.cn-cta-actions a {
    min-height: 43px;

    padding: 10px 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.cn-cta-primary {
    background: #F4BF19;
    color: #083D2B;

    box-shadow:
        0 7px 18px rgba(244, 191, 25, .16);
}

.cn-cta-primary:hover {
    color: #083D2B;

    transform: translateY(-2px);

    box-shadow:
        0 10px 22px rgba(244, 191, 25, .22);
}

.cn-cta-secondary {
    border: 1px solid rgba(255, 255, 255, .32);

    color: #ffffff;

    background: rgba(255, 255, 255, .035);
}

.cn-cta-secondary:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, .09);

    transform: translateY(-2px);
}

/* =========================================================
   BADGE
========================================================= */

.cn-cta-badge {
    position: relative;
    z-index: 2;

    width: 165px;
    min-width: 165px;
    height: 165px;

    margin-right: 80px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(244, 191, 25, .35);

    border-radius: 50%;

    background: rgba(255, 255, 255, .035);

    box-shadow:
        inset 0 0 30px rgba(244, 191, 25, .04);
}

.cn-cta-badge-icon {
    width: 38px;
    height: 38px;

    margin-bottom: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #F4BF19;
    color: #083D2B;

    font-size: 17px;
}

.cn-cta-badge strong {
    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
}

.cn-cta-badge span {
    margin-top: 2px;

    color: rgba(255, 255, 255, .65);

    font-size: 9px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cn-cta-section {
        padding: 50px 0 58px;
    }

    .cn-cta-content {
        min-height: 270px;
        padding: 38px 40px;
    }

    .cn-cta-text h2 {
        font-size: 35px;
    }

    .cn-cta-badge {
        width: 115px;
        min-width: 115px;
        height: 115px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .cn-cta-section {
        padding: 42px 0 50px;
    }

    .cn-cta-section .container {
        width: calc(100% - 28px);
    }

    .cn-cta-content {
        min-height: auto;

        padding: 32px 22px;

        flex-direction: column;
        align-items: flex-start;

        gap: 24px;

        border-radius: 18px;
    }

    .cn-cta-text {
        max-width: 100%;
    }

    .cn-cta-kicker {
        margin-bottom: 11px;

        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .cn-cta-kicker span {
        width: 26px;
    }

    .cn-cta-text h2 {
        font-size: 30px;
        letter-spacing: -.8px;
    }

    .cn-cta-text p {
        margin-top: 11px;

        font-size: 13px;
        line-height: 1.55;
    }

    .cn-cta-actions {
        width: 100%;

        margin-top: 17px;
    }

    .cn-cta-actions a {
        min-height: 42px;

        padding: 9px 14px;

        font-size: 13px;
    }

    .cn-cta-badge {
        width: 100px;
        min-width: 100px;
        height: 100px;

        align-self: center;
    }

    .cn-cta-badge-icon {
        width: 32px;
        height: 32px;

        margin-bottom: 4px;

        font-size: 14px;
    }

    .cn-cta-badge strong {
        font-size: 10px;
    }

    .cn-cta-badge span {
        font-size: 8px;
    }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .cn-cta-content {
        padding: 29px 18px;
    }

    .cn-cta-text h2 {
        font-size: 27px;
    }

    .cn-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cn-cta-actions a {
        width: 100%;
    }
}