/* ========================================
   CMSPOST PARTNER PROGRAM SECTION
======================================== */

.partner-program-sec {
    position: relative;
    overflow: hidden;
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 12% 35%,
            rgba(204, 27, 255, 0.08),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 55%,
            rgba(99, 208, 42, 0.08),
            transparent 30%
        ),
        #ffffff;
}

.partner-program-sec::before {
    content: "";
    position: absolute;
    top: 70px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(204, 27, 255, 0.06);
    filter: blur(20px);
    pointer-events: none;
}

.partner-program-sec .container {
    position: relative;
    z-index: 2;
}

.partner-program-sec .row {
    align-items: center;
    row-gap: 50px;
}

/* ========================================
   PARTNER PROGRAM IMAGE
======================================== */

.partner-program-image {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 18px;
    border: 1px solid rgba(25, 20, 45, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow:
        0 30px 70px rgba(25, 20, 45, 0.12),
        0 8px 24px rgba(204, 27, 255, 0.08);
}

.partner-program-image::before {
    content: "";
    position: absolute;
    top: -14px;
    right: -14px;
    bottom: -14px;
    left: -14px;
    z-index: -1;
    border-radius: 34px;
    background: linear-gradient(
        135deg,
        rgba(204, 27, 255, 0.12),
        rgba(99, 208, 42, 0.08)
    );
    filter: blur(8px);
}

.partner-program-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: contain;
}


/* ========================================
   PARTNER PROGRAM CONTENT
======================================== */

.partner-program-content {
    max-width: 590px;
    padding-left: 30px;
}

.partner-program-content .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(204, 27, 255, 0.09);
    color: #b000e6;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.partner-program-content .sub-title::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #63d02a;
    box-shadow: 0 0 0 5px rgba(99, 208, 42, 0.12);
}

.partner-program-content .title {
    max-width: 570px;
    margin: 0 0 20px;
    color: #12101c;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.partner-program-content > p {
    max-width: 560px;
    margin: 0 0 28px;
    color: #667085;
    font-size: 17px;
    line-height: 1.75;
}


/* ========================================
   COMMISSION STAT CARDS
======================================== */

.partner-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 28px;
}

.partner-stat {
    position: relative;
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(204, 27, 255, 0.13);
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        rgba(204, 27, 255, 0.07),
        rgba(255, 255, 255, 0.96)
    );
}

.partner-stat:last-child {
    border-color: rgba(99, 208, 42, 0.18);
    background: linear-gradient(
        145deg,
        rgba(99, 208, 42, 0.08),
        rgba(255, 255, 255, 0.96)
    );
}

.partner-stat strong {
    display: block;
    margin-bottom: 5px;
    color: #12101c;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.partner-stat:first-child strong {
    color: #cc1bff;
}

.partner-stat:last-child strong {
    color: #56bd23;
}

.partner-stat span {
    display: block;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}


/* ========================================
   PARTNER BENEFITS
======================================== */

.partner-benefits {
    display: grid;
    gap: 13px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.partner-benefits li {
    position: relative;
    margin: 0;
    padding-left: 31px;
    color: #344054;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

.partner-benefits li::before {
    content: "\2713";
    position: absolute;
    top: 1px;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(99, 208, 42, 0.14);
    color: #56bd23;
    font-size: 12px;
    font-weight: 900;
}


/* ========================================
   PARTNER BUTTONS
======================================== */

.partner-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.partner-buttons .btn-style1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 13px 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #cc1bff, #a800e8);
    box-shadow: 0 14px 30px rgba(204, 27, 255, 0.22);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.partner-buttons .btn-style1:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(204, 27, 255, 0.3);
    color: #ffffff;
}

.partner-login {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    padding: 12px 4px;
    color: #b000e6;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.25s ease;
}

.partner-login::after {
    content: "\2192";
    margin-left: 8px;
    font-size: 18px;
    transition: transform 0.25s ease;
}

.partner-login:hover {
    color: #63d02a;
}

.partner-login:hover::after {
    transform: translateX(4px);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

    .partner-program-sec {
        padding: 85px 0;
    }

    .partner-program-content {
        max-width: 680px;
        padding-left: 0;
    }

    .partner-program-content .title {
        font-size: 44px;
    }

    .partner-program-image {
        max-width: 720px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .partner-program-sec {
        padding: 70px 0;
    }

    .partner-program-sec .row {
        row-gap: 38px;
    }

    .partner-program-content .sub-title {
        margin-bottom: 14px;
        font-size: 11px;
    }

    .partner-program-content .title {
        font-size: 36px;
        line-height: 1.12;
    }

    .partner-program-content > p {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.7;
    }

    .partner-program-image {
        padding: 10px;
        border-radius: 20px;
    }

    .partner-program-image img {
        border-radius: 14px;
    }

    .partner-stats {
        grid-template-columns: 1fr;
    }

    .partner-stat {
        padding: 18px;
    }

    .partner-stat strong {
        font-size: 30px;
    }

    .partner-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .partner-buttons .btn-style1,
    .partner-login {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}


/* ========================================
   SMALL PHONES
======================================== */

@media (max-width: 480px) {

    .partner-program-sec {
        padding: 60px 0;
    }

    .partner-program-content .title {
        font-size: 31px;
    }

    .partner-benefits li {
        font-size: 14px;
    }
}
/* ========================================
   CMSPOST PLATFORM COMPARISON
======================================== */

.comparison-sec {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(204, 27, 255, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(99, 208, 42, 0.06),
            transparent 28%
        ),
        #f8f8fc;
}

.comparison-sec .container {
    position: relative;
    z-index: 2;
    width: min(1380px, calc(100% - 40px));
    margin: 0 auto;
}


/* ========================================
   SECTION HEADING
======================================== */

.comparison-heading {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.comparison-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 9px 18px;
    border: 1px solid rgba(25, 20, 45, 0.08);
    border-radius: 999px;
    background: #ffffff;
    color: #19152a;
    font-size: 13px;
    font-weight: 700;
}

.comparison-heading h2 {
    margin: 0 0 18px;
    color: #0f0e16;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.comparison-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: #667085;
    font-size: 17px;
    line-height: 1.75;
}


/* ========================================
   DIFFERENTIATOR CALLOUT
======================================== */

.comparison-callout {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 42px;
    padding: 28px 32px;
    border: 1px solid rgba(204, 27, 255, 0.14);
    border-radius: 24px;
    background:
        linear-gradient(
            120deg,
            rgba(204, 27, 255, 0.08),
            rgba(99, 208, 42, 0.06)
        ),
        #ffffff;
    box-shadow: 0 18px 50px rgba(25, 20, 45, 0.07);
}

.comparison-callout-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, #cc1bff, #9f00dc);
    box-shadow: 0 12px 28px rgba(204, 27, 255, 0.24);
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
}

.comparison-callout-label {
    display: block;
    margin-bottom: 6px;
    color: #a600dc;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.comparison-callout h3 {
    margin: 0 0 8px;
    color: #111019;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.25;
}

.comparison-callout p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.65;
}


/* ========================================
   DESKTOP TABLE
======================================== */

.comparison-table-wrap {
    overflow: hidden;
    border: 1px solid #e7e5ec;
    border-radius: 28px;
    background: #ffffff;
    box-shadow:
        0 30px 75px rgba(27, 20, 45, 0.1),
        0 8px 24px rgba(204, 27, 255, 0.04);
}

.comparison-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
    padding: 22px 20px;
    border-right: 1px solid #eceaf1;
    border-bottom: 1px solid #eceaf1;
    vertical-align: middle;
    text-align: left;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
    border-bottom: 0;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: 0;
}

.comparison-table thead th {
    height: 115px;
    background: #17151f;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    text-align: center;
}

.comparison-table thead th:first-child {
    width: 22%;
    padding-left: 26px;
    text-align: left;
}

.comparison-table tbody th {
    width: 22%;
    background: #fbfbfd;
    color: #191724;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.comparison-table tbody td {
    color: #667085;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    text-align: center;
}

.comparison-table .cmspost-column {
    background: rgba(204, 27, 255, 0.045);
    border-right-color: rgba(204, 27, 255, 0.22);
    border-left: 1px solid rgba(204, 27, 255, 0.22);
}

.comparison-table thead .cmspost-column {
    position: relative;
    background: linear-gradient(145deg, #cc1bff, #8f00d1);
    border-left: 0;
    border-right: 0;
}

.comparison-brand {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 800;
}

.comparison-badge {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-best {
    color: #17131f;
    font-weight: 750;
}

.status-best::before {
    content: "\2713";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    margin-right: 7px;
    border-radius: 50%;
    background: rgba(99, 208, 42, 0.14);
    color: #56bd23;
    font-size: 11px;
    font-weight: 900;
    vertical-align: -2px;
}

.comparison-yes {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #3ca414;
    font-weight: 800;
}

.comparison-yes::before {
    content: "\2713";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: rgba(99, 208, 42, 0.14);
}

.comparison-no {
    color: #98a2b3;
    font-weight: 700;
}


/* ========================================
   MOBILE COMPARISON
======================================== */

.comparison-mobile {
    display: none;
}

.mobile-platform-card {
    padding: 26px;
    border: 1px solid #e7e5ec;
    border-radius: 24px;
    background: #ffffff;
}

.mobile-platform-card.featured {
    border: 2px solid #cc1bff;
    background:
        linear-gradient(
            145deg,
            rgba(204, 27, 255, 0.07),
            rgba(255, 255, 255, 0.98)
        );
    box-shadow: 0 20px 45px rgba(204, 27, 255, 0.12);
}

.mobile-platform-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.mobile-platform-label {
    display: block;
    margin-bottom: 6px;
    color: #a600dc;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mobile-platform-heading h3 {
    margin: 0;
    color: #12101c;
    font-size: 30px;
    font-weight: 800;
}

.mobile-platform-badge {
    padding: 7px 10px;
    border-radius: 999px;
    background: #cc1bff;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
}

.mobile-platform-card ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-platform-card li {
    position: relative;
    padding-left: 29px;
    color: #344054;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.mobile-platform-card li::before {
    content: "\2713";
    position: absolute;
    top: 1px;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(99, 208, 42, 0.14);
    color: #56bd23;
    font-size: 11px;
    font-weight: 900;
}

.mobile-platform-details {
    overflow: hidden;
    margin-top: 14px;
    border: 1px solid #e7e5ec;
    border-radius: 18px;
    background: #ffffff;
}

.mobile-platform-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    color: #17151f;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.mobile-platform-details summary::-webkit-details-marker {
    display: none;
}

.details-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(204, 27, 255, 0.09);
    color: #b000e6;
    font-size: 20px;
}

.mobile-platform-details[open] .details-icon {
    transform: rotate(45deg);
}

.mobile-platform-details-content {
    padding: 0 20px 20px;
}

.mobile-platform-details-content p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.65;
}


/* ========================================
   DISCLAIMER
======================================== */

.comparison-disclaimer {
    max-width: 900px;
    margin: 24px auto 0;
    color: #98a2b3;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}


/* ========================================
   PRICING TRANSITION
======================================== */

.comparison-pricing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 45px;
    padding: 30px 34px;
    border-radius: 24px;
    background: #17151f;
}

.comparison-pricing-cta > div > span {
    display: block;
    margin-bottom: 6px;
    color: #63d02a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.comparison-pricing-cta h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
}

.comparison-pricing-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.comparison-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 10px 12px 10px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #cc1bff, #a800e8);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.comparison-button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #111019;
    font-size: 18px;
}

.comparison-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1100px) {

    .comparison-table th,
    .comparison-table td {
        padding: 18px 13px;
    }

    .comparison-table tbody th {
        font-size: 13px;
    }

    .comparison-table tbody td {
        font-size: 12px;
    }
}

@media (max-width: 991px) {

    .comparison-sec {
        padding: 80px 0;
    }

    /*
     * Never squeeze the desktop comparison
     * table into a phone or tablet.
     */
    .comparison-table-wrap {
        display: none;
    }

    .comparison-mobile {
        display: block;
    }

    .comparison-callout {
        grid-template-columns: 1fr;
    }

    .comparison-callout-icon {
        width: 54px;
        height: 54px;
    }

    .comparison-pricing-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {

    .comparison-sec {
        padding: 65px 0;
    }

    .comparison-sec .container {
        width: min(100% - 28px, 1380px);
    }

    .comparison-heading {
        margin-bottom: 34px;
        text-align: left;
    }

    .comparison-heading h2 {
        font-size: 37px;
    }

    .comparison-heading p {
        font-size: 15px;
    }

    .comparison-callout {
        padding: 24px 20px;
    }

    .comparison-callout h3 {
        font-size: 22px;
    }

    .comparison-callout p {
        font-size: 14px;
    }

    .mobile-platform-card {
        padding: 22px 19px;
    }

    .mobile-platform-heading {
        flex-direction: column;
    }

    .comparison-pricing-cta {
        padding: 25px 21px;
    }

    .comparison-pricing-cta h3 {
        font-size: 22px;
    }

    .comparison-button {
        width: 100%;
        justify-content: space-between;
    }
}