/* =====================================================
   CZORS PROVIDER CTA
===================================================== */

.czors-provider-cta {
    position: relative;
    width: 100%;
    min-height: 490px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 28px;
    margin-top: 42px;
    isolation: isolate;
    background: #111;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.czors-provider-cta-bg {
    position: absolute;
    inset: 0;
    z-index: -3;

    /*
     * Replace this image URL with your preferred provider image.
     */
    background-image:
        url("https://czors.com/wp-content/uploads/provider-cta-background.jpg");

    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.czors-provider-cta:hover .czors-provider-cta-bg {
    transform: scale(1.035);
}

.czors-provider-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 10, 0.96) 0%,
            rgba(10, 10, 10, 0.88) 48%,
            rgba(10, 10, 10, 0.42) 100%
        );
}

.czors-provider-cta-content {
    width: min(670px, 100%);
    padding: 58px;
    color: #fff;
}

.czors-provider-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 166, 41, 0.35);
    border-radius: 999px;
    background: rgba(255, 166, 41, 0.12);
    color: #ffb14b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.czors-provider-eyebrow svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.czors-provider-cta h2 {
    max-width: 610px;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.czors-provider-description {
    max-width: 590px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.7;
}

.czors-provider-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.czors-provider-benefit {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    min-width: 0;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.czors-provider-benefit > span {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(255, 166, 41, 0.14);
    color: #ffa629;
}

.czors-provider-benefit svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.czors-provider-benefit div {
    min-width: 0;
}

.czors-provider-benefit strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
}

.czors-provider-benefit small {
    display: block;
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    line-height: 1.45;
}

.czors-provider-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 31px;
}

.czors-provider-primary {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border-radius: 14px;
    background: #ffa629;
    color: #171717 !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 12px 26px rgba(255, 166, 41, 0.25);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.czors-provider-primary:hover {
    transform: translateY(-2px);
    background: #ffb64f;
    color: #171717 !important;
    box-shadow: 0 16px 32px rgba(255, 166, 41, 0.34);
}

.czors-provider-primary svg {
    width: 17px;
    height: 17px;
    transition: transform 0.2s ease;
}

.czors-provider-primary:hover svg {
    transform: translateX(3px);
}

.czors-provider-secondary {
    position: relative;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
}

.czors-provider-secondary::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.czors-provider-secondary:hover {
    color: #fff !important;
}

.czors-provider-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .czors-provider-cta {
        min-height: auto;
    }

    .czors-provider-cta-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 10, 10, 0.95),
                rgba(10, 10, 10, 0.75)
            );
    }

    .czors-provider-cta-content {
        padding: 44px;
    }

    .czors-provider-benefits {
        grid-template-columns: 1fr;
        max-width: 470px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .czors-provider-cta {
        min-height: 570px;
        margin-top: 28px;
        border-radius: 22px;
        align-items: flex-end;
    }

    .czors-provider-cta-bg {
        background-position: 62% center;
    }

    .czors-provider-cta-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(10, 10, 10, 0.2) 0%,
                rgba(10, 10, 10, 0.8) 38%,
                rgba(10, 10, 10, 0.98) 68%,
                #0a0a0a 100%
            );
    }

    .czors-provider-cta-content {
        width: 100%;
        padding: 28px 22px 25px;
    }

    .czors-provider-eyebrow {
        margin-bottom: 13px;
        font-size: 11px;
    }

    .czors-provider-cta h2 {
        max-width: 330px;
        font-size: 30px;
        line-height: 1.08;
    }

    .czors-provider-description {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.6;
    }

    .czors-provider-benefits {
        gap: 9px;
        margin-top: 21px;
    }

    .czors-provider-benefit {
        align-items: center;
        padding: 11px 12px;
        border-radius: 14px;
    }

    .czors-provider-benefit > span {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }

    .czors-provider-benefit strong {
        margin-bottom: 2px;
        font-size: 12px;
    }

    .czors-provider-benefit small {
        font-size: 10px;
    }

    .czors-provider-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-top: 23px;
    }

    .czors-provider-primary {
        width: 100%;
        min-height: 50px;
    }

    .czors-provider-secondary {
        align-self: center;
        font-size: 13px;
    }
}
/* =====================================================
   CZORS PROVIDER CTA
===================================================== */

.czors-provider-cta {
    width: 100%;
    margin: 56px 0 42px;
    padding: 0 28px;
}

.czors-provider-cta-inner {
    position: relative;
    width: min(100%, 1500px);
    min-height: 440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 72% 45%,
            rgba(242, 140, 40, 0.12),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #0b0b0b 0%,
            #121212 55%,
            #1a1109 100%
        );
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    isolation: isolate;
}

.czors-provider-cta-inner::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -130px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(255, 166, 41, 0.055);
    filter: blur(20px);
    pointer-events: none;
}

.czors-provider-cta-copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px 44px 48px 54px;
}

.czors-provider-cta-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 166, 41, 0.28);
    border-radius: 999px;
    background: rgba(255, 166, 41, 0.1);
    color: #ffad3f;
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
    letter-spacing: 0.035em;
}

.czors-provider-cta-label svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.1;
}

.czors-provider-cta-copy h2 {
    max-width: 610px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.czors-provider-cta-copy h2 span {
    color: #ffa629;
}

.czors-provider-cta-description {
    max-width: 610px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 15px;
    line-height: 1.7;
}

.czors-provider-cta-benefits {
    max-width: 680px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    margin-top: 27px;
}

.czors-provider-cta-benefit {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    min-width: 0;
}

.czors-provider-check {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    margin-top: 1px;
    border: 1px solid rgba(255, 166, 41, 0.2);
    border-radius: 9px;
    background: rgba(255, 166, 41, 0.11);
    color: #ffa629;
}

.czors-provider-check svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.6;
}

.czors-provider-cta-benefit div {
    min-width: 0;
}

.czors-provider-cta-benefit strong {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 13px;
    font-weight: 720;
    line-height: 1.4;
}

.czors-provider-cta-benefit small {
    display: block;
    color: rgba(255, 255, 255, 0.47);
    font-size: 11px;
    line-height: 1.45;
}

.czors-provider-cta-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

.czors-provider-cta-primary {
    min-width: 205px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 23px;
    border-radius: 15px;
    background: #ffa629;
    color: #17120d !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    box-shadow:
        0 13px 28px rgba(242, 140, 40, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.czors-provider-cta-primary:hover {
    transform: translateY(-2px);
    background: #ffb344;
    color: #17120d !important;
    box-shadow:
        0 17px 34px rgba(242, 140, 40, 0.31),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.czors-provider-cta-primary svg {
    width: 17px;
    height: 17px;
    transition: transform 0.2s ease;
}

.czors-provider-cta-primary:hover svg {
    transform: translateX(4px);
}

.czors-provider-cta-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.czors-provider-cta-secondary::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.czors-provider-cta-secondary:hover {
    color: #ffffff !important;
}

.czors-provider-cta-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.czors-provider-cta-login {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
    line-height: 1.5;
}

.czors-provider-cta-login a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 3px;
    color: rgba(255, 255, 255, 0.72) !important;
    font-weight: 650;
    text-decoration: none !important;
}

.czors-provider-cta-login a:hover {
    color: #ffa629 !important;
}

.czors-provider-cta-login svg {
    width: 13px;
    height: 13px;
}

.czors-provider-cta-visual {
    position: relative;
    min-height: 440px;
    margin: 24px 24px 24px 0;
    overflow: hidden;
    border-radius: 24px;
    background: #181818;
}

.czors-provider-cta-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(12, 12, 12, 0.35) 0%,
            transparent 36%
        ),
        linear-gradient(
            180deg,
            transparent 56%,
            rgba(8, 8, 8, 0.38) 100%
        );
    pointer-events: none;
}

.czors-provider-cta-visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.75s ease;
}

.czors-provider-cta-inner:hover .czors-provider-cta-visual > img {
    transform: scale(1.035);
}

.czors-provider-cta-glow {
    position: absolute;
    right: -55px;
    bottom: -80px;
    z-index: 1;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 166, 41, 0.18);
    filter: blur(55px);
    pointer-events: none;
}

.czors-provider-cta-floating-card {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    background: rgba(15, 15, 15, 0.73);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
}

.czors-provider-cta-floating-card > span {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #ffa629;
    color: #17120d;
}

.czors-provider-cta-floating-card svg {
    width: 18px;
    height: 18px;
}

.czors-provider-cta-floating-card strong {
    display: block;
    margin-bottom: 2px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.3;
}

.czors-provider-cta-floating-card small {
    display: block;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
}

.czors-provider-cta-category-card {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(15, 15, 15, 0.68);
    color: rgba(255, 255, 255, 0.86);
    font-size: 10px;
    font-weight: 680;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.czors-provider-cta-category-card svg {
    width: 14px;
    height: 14px;
    color: #ffa629;
}

/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1100px) {

    .czors-provider-cta-inner {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    }

    .czors-provider-cta-copy {
        padding: 44px 34px 42px 38px;
    }

    .czors-provider-cta-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

    .czors-provider-cta {
        padding: 0 20px;
    }

    .czors-provider-cta-inner {
        grid-template-columns: 1fr;
    }

    .czors-provider-cta-copy {
        padding: 42px 34px 34px;
    }

    .czors-provider-cta-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .czors-provider-cta-visual {
        min-height: 380px;
        margin: 0 24px 24px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .czors-provider-cta {
        margin: 34px 0 28px;
        padding: 0 14px;
    }

    .czors-provider-cta-inner {
        border-radius: 23px;
    }

    .czors-provider-cta-copy {
        padding: 30px 21px 25px;
    }

    .czors-provider-cta-label {
        margin-bottom: 14px;
        padding: 7px 11px;
        font-size: 10px;
    }

    .czors-provider-cta-copy h2 {
        max-width: 330px;
        font-size: 34px;
        line-height: 1.04;
    }

    .czors-provider-cta-description {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.65;
    }

    .czors-provider-cta-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 22px;
    }

    .czors-provider-cta-benefit strong {
        font-size: 12px;
    }

    .czors-provider-cta-benefit small {
        font-size: 10px;
    }

    .czors-provider-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-top: 25px;
    }

    .czors-provider-cta-primary {
        width: 100%;
        min-height: 52px;
    }

    .czors-provider-cta-secondary {
        align-self: center;
    }

    .czors-provider-cta-login {
        margin-top: 19px;
        text-align: center;
    }

    .czors-provider-cta-login a {
        display: flex;
        width: fit-content;
        margin: 4px auto 0;
    }

    .czors-provider-cta-visual {
        min-height: 310px;
        margin: 0 14px 14px;
        border-radius: 18px;
    }

    .czors-provider-cta-floating-card {
        left: 13px;
        right: 13px;
        bottom: 13px;
        padding: 11px 12px;
    }

    .czors-provider-cta-category-card {
        top: 13px;
        right: 13px;
        padding: 8px 10px;
        font-size: 9px;
    }
}
/* Provider CTA inner split layout */

.czors-provider-cta {
    padding: 22px;
}

.czors-provider-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 24px;
    width: 100%;
    height: 100%;
}

.czors-provider-cta-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 22px 18px 22px 24px;
}

.czors-provider-cta-media {
    position: relative;
    min-width: 0;
    min-height: 460px;
    overflow: hidden;
    border-radius: 22px;
}

.czors-provider-cta-media::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.28)
        );
}

.czors-provider-cta-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center;
}

.czors-provider-media-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 13px;
    color: #ffffff;
    background: rgba(12, 12, 12, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.czors-provider-media-badge svg {
    width: 17px;
    height: 17px;
    color: #f28c28;
}

/* Benefits fit better inside the reduced text column */

.czors-provider-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

/* Tablet */

@media (max-width: 1100px) {

    .czors-provider-cta-inner {
        grid-template-columns: 1fr;
    }

    .czors-provider-cta-media {
        min-height: 320px;
    }

    .czors-provider-cta-media img {
        min-height: 320px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .czors-provider-cta {
        padding: 14px;
    }

    .czors-provider-cta-inner {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .czors-provider-cta-copy {
        order: 2;
        padding: 8px 6px 10px;
    }

    .czors-provider-cta-media {
        order: 1;
        min-height: 240px;
        border-radius: 17px;
    }

    .czors-provider-cta-media img {
        min-height: 240px;
    }

    .czors-provider-benefits {
        grid-template-columns: 1fr;
    }

    .czors-provider-media-badge {
        right: 12px;
        bottom: 12px;
    }
}
