
.ccp-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.ccp-plan-card {
    flex: 0 1 200px;
    max-width: 200px;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ccp-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.ccp-plan-card h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ccp-plan-card .price {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0.5rem 0;
}
.ccp-plan-card .button {
    margin-top: 1rem;
}
.ccp-code-form {
    margin-top: 2rem;
    text-align: center;
}

.ccp-plan-card .button {
    background: #0a84ff !important;
    color: #fff !important;
    font-weight: bold !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 0.5rem 1rem !important;
}
.ccp-plan-card .button:hover {
    background: #0066cc !important;
    cursor: pointer !important;
}

/* Guest code input and button styling */
.ccp-code-form form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.ccp-code-form input[type="text"] {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1 1 200px;
    max-width: 300px;
}
.ccp-code-form button {
    background-color: #0a84ff !important;
    color: #fff !important;
    font-weight: bold !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 0.5rem 1rem !important;
}
.ccp-code-form button:hover {
    background-color: #0066cc !important;
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .ccp-plan-card {
        background: #1e1e1e;
        border-color: #333;
        color: #ddd;
    }
    .ccp-plan-card .button,
    .ccp-code-form button {
        background-color: #0a84ff !important;
    }
    .ccp-code-form input[type="text"] {
        background: #2b2b2b;
        border-color: #555;
        color: #eee;
    }
}

/* Card styling matching CSV Converter plugin */
.ccp-plan-card {
    background: #ffffff !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}

/* Light mode heading for guest code */
.ccp-code-form h3 {
    border-bottom: none !important;
    color: #000 !important;
}

/* Dark mode overrides */
@media (prefers-color-scheme: dark) {
    .ccp-plan-card {
        background: #1f1f1f !important;
        border: 1px solid #333 !important;
        color: #f1f1f1 !important;
    }
    .ccp-code-form h3 {
        color: #f1f1f1 !important;
    }
}


/* Container base styling */
.csv-converter {
    background: #ffffff !important;
    color: #000000 !important;
}
/* Card styling for light mode */
.csv-converter .ccp-plan-card {
    background: #ffffff !important;
    color: #000000 !important;
}

/* Hide page title and any solid borders within paywall */
.csv-converter .entry-title,
.csv-converter .page-title,
.csv-converter hr,
.csv-converter header,
.csv-converter .page-header,
.csv-converter .entry-header {
    display: none !important;
}

/* Guest code header styling */
.csv-converter .ccp-code-form h3 {
    color: #000000 !important;
    border-bottom: none !important;
}

/* Dark mode overrides */
@media (prefers-color-scheme: dark) {
    .csv-converter {
        background: #000000 !important;
        color: #ffffff !important;
    }
    .csv-converter .ccp-plan-card {
        background: #1f1f1f !important;
        color: #ffffff !important;
    }
    .csv-converter .ccp-code-form h3 {
        color: #ffffff !important;
    }
    .csv-converter .ccp-plan-card .button,
    .csv-converter .ccp-code-form button {
        background-color: #0a84ff !important;
    }
}


/* === Refined Light/Dark Styling === */

/* Base container: light mode */
.csv-converter {
    background: #ffffff !important;
    color: #000000 !important;
    border-bottom: none !important; /* remove leftover border */
}
/* Plan cards: light mode */
.csv-converter .ccp-plan-card {
    background: #ffffff !important;
    color: #000000 !important;
}
/* Guest code header and input: light mode */
.csv-converter .ccp-code-form h3 {
    color: #000000 !important;
    border-bottom: none !important;
}
.csv-converter .ccp-code-form input[type="text"] {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #ccc !important;
}

/* Dark mode overrides */
body.csv-dark .csv-converter {
    background: #191919 !important; /* container background */
    color: #ffffff !important;
}
body.csv-dark .csv-converter .ccp-plan-card {
    background: #1f1f1f !important;
    color: #ffffff !important;
}
body.csv-dark .csv-converter .ccp-code-form h3 {
    color: #ffffff !important;
}
body.csv-dark .csv-converter .ccp-code-form input[type="text"] {
    background: #1f1f1f !important;
    color: #ffffff !important;
    border: 1px solid #555 !important;
}


.csv-converter #ccp-usage-status,
.csv-converter .ccp-usage-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f2f4f7 !important;
    color: #101828 !important;
    font-size: 14px;
    font-weight: 600;
}

.csv-converter .ccp-usage-status .ccp-usage-pill {
    display: inline-block;
    min-width: 36px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #0a84ff !important;
    color: #fff !important;
    text-align: center;
}

.csv-converter .ccp-usage-status.is-lifetime .ccp-usage-pill {
    background: #027a48 !important;
}

body.csv-dark .csv-converter .ccp-usage-status {
    background: #2c2c2c !important;
    color: #f2f4f7 !important;
}


/* Usage status inside converter form */
.csv-converter #csv-converter-form {
    text-align: left;
}

.csv-converter #csv-converter-form #ccp-usage-status,
.csv-converter #csv-converter-form .ccp-usage-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    margin: -2px 0 18px;
    padding: 0;
    background: transparent !important;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.csv-converter #csv-converter-form .ccp-usage-status .ccp-usage-label {
    color: #344054 !important;
}

.csv-converter #csv-converter-form .ccp-usage-status .ccp-usage-pill {
    display: inline;
    min-width: 0;
    padding: 0;
    border-radius: 0;
    background: transparent !important;
    color: #0073aa !important;
    font-weight: 700;
    text-align: left;
}

.csv-converter #csv-converter-form .ccp-usage-status.is-lifetime .ccp-usage-pill {
    color: #027a48 !important;
}

body.csv-dark .csv-converter #csv-converter-form .ccp-usage-status .ccp-usage-label {
    color: #e4e7ec !important;
}

body.csv-dark .csv-converter #csv-converter-form .ccp-usage-status .ccp-usage-pill {
    color: #7cc4ff !important;
}

body.csv-dark .csv-converter #csv-converter-form .ccp-usage-status.is-lifetime .ccp-usage-pill {
    color: #6ce9a6 !important;
}


/* 3-plan layout */
.csv-converter .ccp-plans-three {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 2rem;
    align-items: stretch;
    max-width: 1040px;
    margin: 0 auto 2.25rem;
}

.csv-converter .ccp-plan-card {
    position: relative;
    max-width: none;
    min-height: 420px;
    padding: 0;
    border: 1px solid #dbe3ee;
    border-radius: 22px !important;
    overflow: visible;
}

.csv-converter .ccp-plan-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.1rem 1.65rem 1.7rem;
    text-align: center;
}

.csv-converter .ccp-plan-card h3 {
    font-size: 2rem;
    line-height: 1.1;
    margin: 0 0 1rem;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    min-height: 4.4rem;
}

.csv-converter .ccp-plan-subtitle {
    margin: 0 0 1.4rem;
    font-size: 1.05rem;
    color: #667085;
}

.csv-converter .ccp-plan-card .price {
    font-size: 2.7rem;
    line-height: 1;
    font-weight: 800;
    color: #0a84ff;
    margin: 0 0 1.7rem;
}

.csv-converter .ccp-plan-card .price del,
.csv-converter .ccp-plan-card .price ins,
.csv-converter .ccp-plan-card .price .amount,
.csv-converter .ccp-plan-card .price bdi {
    color: inherit;
}

.csv-converter .ccp-plan-features {
    list-style: none;
    margin: 0 0 1.6rem;
    padding: 0;
    width: 100%;
    text-align: left;
}

.csv-converter .ccp-plan-features li {
    position: relative;
    margin: 0 0 0.95rem;
    padding-left: 1.65rem;
    font-size: 1rem;
    color: #344054;
}

.csv-converter .ccp-plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0a84ff;
}

.csv-converter .ccp-plan-card .button {
    width: 100%;
    max-width: 210px;
    margin-top: auto;
    border-radius: 14px !important;
    padding: 0.8rem 1.2rem !important;
    font-size: 1.05rem;
}

.csv-converter .ccp-plan-card.is-featured {
    transform: translateY(-2px);
}

.csv-converter .ccp-plan-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #1d7ff0;
    color: #fff;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

body.csv-dark .csv-converter .ccp-plan-subtitle {
    color: #c7d0df;
}

body.csv-dark .csv-converter .ccp-plan-features li {
    color: #e4e7ec;
}

@media (max-width: 980px) {
    .csv-converter .ccp-plans-three {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 700px) {
    .csv-converter .ccp-plans-three {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .csv-converter .ccp-plan-card {
        min-height: 0;
    }

    .csv-converter .ccp-plan-card h3 {
        min-height: 0;
        font-size: 1.8rem;
    }
}


/* Desktop polish for 3-plan cards */
@media (min-width: 981px) {
    .csv-converter .ccp-plan-card .ccp-plan-card-inner {
        padding-top: 3.1rem;
    }

    .csv-converter .ccp-plan-features li {
        white-space: nowrap;
        font-size: 0.96rem;
    }
}

.csv-converter .ccp-plan-badge {
    top: -16px;
    max-width: calc(100% - 34px);
    white-space: nowrap;
    padding: 0.42rem 0.78rem;
    font-size: 0.82rem;
    line-height: 1;
}


/* === 3-plan new design mockup match === */
.csv-converter .ccp-plans-three {
    max-width: 1380px;
    gap: 28px;
    margin: 8px auto 44px;
}

.csv-converter .ccp-plan-card {
    min-height: 0;
    border: 1px solid #d9dee7;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(16,24,40,0.06) !important;
}

.csv-converter .ccp-plan-card:hover {
    transform: none;
    box-shadow: 0 4px 14px rgba(16,24,40,0.08) !important;
}

.csv-converter .ccp-plan-card-inner {
    padding: 28px 34px 32px;
    align-items: stretch;
}

.csv-converter .ccp-plan-card h3 {
    min-height: auto;
    margin: 0;
    padding: 0 0 22px;
    border-bottom: 1px solid #e7ebf0;
    color: #194f97;
    font-size: 33px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
}

.csv-converter .ccp-plan-subtitle { display: none !important; }

.csv-converter .ccp-plan-card .price {
    margin: 20px 0 26px;
    color: #1f2937;
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.csv-converter .ccp-plan-features {
    margin: 0 0 28px;
    padding: 0 8px;
}

.csv-converter .ccp-plan-features li {
    margin: 0 0 14px;
    padding-left: 38px;
    color: #1f2937;
    font-size: 25px;
    line-height: 1.35;
}

.csv-converter .ccp-plan-features li::before {
    content: "✓";
    top: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #0a5dc2;
    font-size: 26px;
    font-weight: 800;
}

.csv-converter .ccp-plan-card .button {
    max-width: none;
    width: 100%;
    margin-top: auto;
    padding: 18px 22px !important;
    border-radius: 9px !important;
    background: linear-gradient(180deg, #1f72d8 0%, #0454ba 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
    color: #fff !important;
    font-size: 24px;
    font-weight: 800 !important;
    line-height: 1;
    text-align: center;
}

.csv-converter .ccp-plan-badge {
    top: -16px;
    left: 18px;
    transform: none;
    max-width: none;
    padding: 12px 22px 11px;
    border-radius: 0;
    background: #e2ad28;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

.csv-converter .ccp-code-form {
    margin-top: 18px;
    text-align: center;
}

.csv-converter .ccp-code-form h3 {
    margin: 0 0 18px;
    color: #23262f !important;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
}

.csv-converter .ccp-code-form form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    margin: 0 auto;
}

.csv-converter .ccp-code-form input[type="text"] {
    flex: 0 1 550px;
    max-width: 550px;
    min-width: 280px;
    height: 74px;
    padding: 0 24px;
    border: 1px solid #cfd5dd !important;
    border-radius: 10px;
    background: #fff !important;
    color: #333 !important;
    font-size: 24px;
}

.csv-converter .ccp-code-form button.button,
.csv-converter .ccp-code-form button {
    flex: 0 0 auto;
    min-width: 165px;
    height: 74px;
    padding: 0 28px !important;
    border-radius: 10px !important;
    background: linear-gradient(180deg, #1f72d8 0%, #0454ba 100%) !important;
    color: #fff !important;
    font-size: 24px;
    font-weight: 800 !important;
    line-height: 1;
}

.csv-converter .ccp-code-form #ccp-code-message {
    margin-top: 12px;
    text-align: center;
}

@media (max-width: 1200px) {
    .csv-converter .ccp-plans-three {
        grid-template-columns: repeat(3, minmax(260px, 1fr));
        gap: 22px;
        max-width: 1180px;
    }
    .csv-converter .ccp-plan-card h3 { font-size: 28px; }
    .csv-converter .ccp-plan-card .price { font-size: 50px; }
    .csv-converter .ccp-plan-features li { font-size: 20px; }
}

@media (max-width: 980px) {
    .csv-converter .ccp-plans-three {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .csv-converter .ccp-plan-card-inner { padding: 26px 24px 28px; }
    .csv-converter .ccp-plan-card h3 { font-size: 32px; }
    .csv-converter .ccp-plan-card .price { font-size: 52px; }
    .csv-converter .ccp-plan-features li { font-size: 22px; }
    .csv-converter .ccp-code-form h3 { font-size: 26px; }
    .csv-converter .ccp-code-form form { flex-wrap: wrap; gap: 12px; }
    .csv-converter .ccp-code-form input[type="text"] {
        flex-basis: 100%;
        max-width: 420px;
        height: 62px;
        font-size: 22px;
    }
    .csv-converter .ccp-code-form button.button,
    .csv-converter .ccp-code-form button {
        min-width: 140px;
        height: 62px;
        font-size: 22px;
    }
}

body.csv-dark .csv-converter .ccp-plan-card {
    background: #1f1f1f !important;
    border-color: #2f3947;
}
body.csv-dark .csv-converter .ccp-plan-card h3 {
    color: #7db0ff;
    border-bottom-color: #334155;
}
body.csv-dark .csv-converter .ccp-plan-card .price,
body.csv-dark .csv-converter .ccp-plan-features li,
body.csv-dark .csv-converter .ccp-code-form h3 {
    color: #f8fafc !important;
}


/* === v2.5.1 responsive cleanup === */
@media (min-width: 981px) {
    .csv-converter .ccp-plans-three {
        grid-template-columns: repeat(3, minmax(320px, 1fr));
        max-width: 1320px;
        gap: 30px;
    }

    .csv-converter .ccp-plan-card {
        min-width: 0;
    }

    .csv-converter .ccp-plan-card-inner {
        padding: 34px 34px 32px;
    }

    .csv-converter .ccp-plan-card h3 {
        font-size: 2.2rem;
    }

    .csv-converter .ccp-plan-card .price {
        font-size: 3.7rem;
    }

    .csv-converter .ccp-plan-features {
        padding: 0 2px;
    }

    .csv-converter .ccp-plan-features li {
        white-space: normal;
        font-size: 1.35rem;
        line-height: 1.32;
        padding-left: 2rem;
    }

    .csv-converter .ccp-plan-features li::before {
        font-size: 1.5rem;
        top: -0.02rem;
    }
}

/* True corner ribbon */
.csv-converter .ccp-plan-card.is-featured {
    overflow: hidden;
}

.csv-converter .ccp-plan-badge {
    top: 18px;
    left: -42px;
    transform: rotate(-45deg);
    transform-origin: center;
    min-width: 170px;
    text-align: center;
    padding: 10px 34px;
    border-radius: 0;
    clip-path: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

@media (max-width: 980px) {
    .csv-converter .ccp-plans-three {
        gap: 26px;
        max-width: 520px;
        margin-bottom: 40px;
    }

    .csv-converter .ccp-plan-card {
        width: 100%;
    }

    .csv-converter .ccp-plan-badge {
        top: 16px;
        left: -40px;
        min-width: 160px;
        font-size: 20px;
        padding: 10px 28px;
    }
}

@media (max-width: 640px) {
    .csv-converter .ccp-plans-three {
        gap: 30px;
        max-width: 100%;
    }

    .csv-converter .ccp-plan-card-inner {
        padding: 28px 24px 30px;
    }

    .csv-converter .ccp-plan-badge {
        top: 14px;
        left: -44px;
        min-width: 168px;
        font-size: 18px;
    }

    .csv-converter .ccp-plan-card h3 {
        font-size: 30px;
    }

    .csv-converter .ccp-plan-features li {
        line-height: 1.3;
    }
}


/* === v2.5.3 title alignment cleanup === */
@media (min-width: 981px) {
    .csv-converter .ccp-plan-card {
        overflow: hidden;
    }

    .csv-converter .ccp-plan-card-inner {
        padding-top: 72px;
    }

    .csv-converter .ccp-plan-card h3 {
        white-space: nowrap;
        font-size: 2.05rem;
        line-height: 1.1;
        min-height: 0;
        padding-bottom: 20px;
    }

    .csv-converter .ccp-plan-card.is-featured .ccp-plan-card-inner {
        padding-top: 72px;
    }

    .csv-converter .ccp-plan-badge {
        top: 18px;
        left: -50px;
        min-width: 185px;
        padding: 10px 40px;
        z-index: 2;
    }
}

@media (min-width: 981px) and (max-width: 1180px) {
    .csv-converter .ccp-plan-card h3 {
        font-size: 1.82rem;
    }
}


/* === v2.5.4 title/ribbon final cleanup === */
@media (min-width: 981px) {
    .csv-converter .ccp-plans-three {
        grid-template-columns: repeat(3, minmax(360px, 1fr));
        max-width: 1380px;
        gap: 30px;
    }

    .csv-converter .ccp-plan-card {
        overflow: visible;
    }

    .csv-converter .ccp-plan-card-inner {
        padding-top: 86px;
    }

    .csv-converter .ccp-plan-card h3 {
        white-space: nowrap;
        font-size: 1.95rem;
        line-height: 1.08;
        min-height: 0;
        margin: 0;
        padding: 0 0 20px;
    }

    .csv-converter .ccp-plan-badge {
        top: 20px;
        left: -34px;
        min-width: 175px;
        padding: 10px 34px;
        z-index: 3;
        overflow: visible;
    }
}

@media (min-width: 981px) and (max-width: 1180px) {
    .csv-converter .ccp-plan-card h3 {
        font-size: 1.72rem;
    }

    .csv-converter .ccp-plan-badge {
        left: -28px;
        min-width: 165px;
        font-size: 1rem;
    }
}

@media (max-width: 980px) {
    .csv-converter .ccp-plan-badge {
        left: -34px;
        min-width: 162px;
    }
}

/* === v2.5.7 ribbon + guest code sizing cleanup === */
@media (min-width: 981px) {
    .csv-converter .ccp-plan-card,
    .csv-converter .ccp-plan-card.is-featured {
        overflow: visible !important;
    }

    .csv-converter .ccp-plan-card-inner {
        padding-top: 88px;
    }

    .csv-converter .ccp-plan-badge {
        top: 18px !important;
        left: -46px !important;
        width: 190px;
        min-width: 190px;
        height: 42px;
        padding: 0 16px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        box-sizing: border-box;
        font-size: 18px !important;
        line-height: 1 !important;
        z-index: 4;
    }

    .csv-converter .ccp-code-form {
        margin-top: 8px;
    }

    .csv-converter .ccp-code-form h3 {
        margin: 0 0 12px;
        font-size: 24px;
        line-height: 1.15;
    }

    .csv-converter .ccp-code-form form {
        gap: 12px;
    }

    .csv-converter .ccp-code-form input[type="text"] {
        flex: 0 1 420px;
        max-width: 420px;
        min-width: 220px;
        height: 56px;
        padding: 0 18px;
        font-size: 20px;
        border-radius: 8px;
    }

    .csv-converter .ccp-code-form button.button,
    .csv-converter .ccp-code-form button {
        min-width: 120px;
        height: 56px;
        padding: 0 22px !important;
        font-size: 20px;
        border-radius: 8px !important;
    }
}

@media (min-width: 981px) and (max-width: 1180px) {
    .csv-converter .ccp-plan-badge {
        left: -44px !important;
        width: 180px;
        min-width: 180px;
        font-size: 16px !important;
    }

    .csv-converter .ccp-code-form h3 {
        font-size: 22px;
    }

    .csv-converter .ccp-code-form input[type="text"] {
        flex-basis: 380px;
        max-width: 380px;
    }
}

@media (max-width: 980px) {
    .csv-converter .ccp-code-form {
        margin-top: 8px;
    }

    .csv-converter .ccp-code-form h3 {
        margin: 0 0 10px;
        font-size: 22px;
        line-height: 1.15;
    }

    .csv-converter .ccp-code-form form {
        gap: 10px;
    }

    .csv-converter .ccp-code-form input[type="text"] {
        height: 54px;
        font-size: 19px;
        max-width: 360px;
        padding: 0 16px;
    }

    .csv-converter .ccp-code-form button.button,
    .csv-converter .ccp-code-form button {
        min-width: 118px;
        height: 54px;
        font-size: 19px;
        padding: 0 18px !important;
    }

    .csv-converter .ccp-plan-badge {
        left: -40px !important;
        width: 172px;
        min-width: 172px;
        height: 38px;
        padding: 0 14px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        font-size: 16px !important;
        line-height: 1 !important;
        white-space: nowrap;
    }
}

/* === v2.5.9 live ribbon-only cleanup === */
.csv-converter .ccp-plans-three {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(300px, 1fr)) !important;
    gap: 26px !important;
    max-width: 1240px !important;
    margin: 8px auto 34px !important;
    align-items: stretch !important;
}

.csv-converter .ccp-plan-card,
.csv-converter .ccp-plan-card.is-featured {
    position: relative !important;
    overflow: hidden !important;
    min-height: 0 !important;
    border-radius: 14px !important;
    border: 1px solid #d9dee7 !important;
    box-shadow: 0 4px 16px rgba(16,24,40,0.06) !important;
    background: #fff !important;
}

.csv-converter .ccp-ribbon-slot {
    position: relative !important;
    height: 52px !important;
    flex: 0 0 52px !important;
}

.csv-converter .ccp-ribbon-wrap {
    position: absolute !important;
    top: -1px !important;
    left: -1px !important;
    width: 128px !important;
    height: 128px !important;
    overflow: hidden !important;
    pointer-events: none !important;
    z-index: 5 !important;
    border-top-left-radius: 14px !important;
}

.csv-converter .ccp-plan-badge {
    position: absolute !important;
    top: 24px !important;
    right: -46px !important;
    display: block !important;
    width: 196px !important;
    margin: 0 !important;
    padding: 8px 0 !important;
    background: #ddb447 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-radius: 0 !important;
    clip-path: none !important;
    transform: rotate(-45deg) !important;
    transform-origin: center !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12) !important;
}

.csv-converter .ccp-plan-card-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    height: calc(100% - 52px) !important;
    padding: 0 28px 28px !important;
}

.csv-converter .ccp-plan-card h3 {
    margin: 0 !important;
    padding: 0 0 18px !important;
    min-height: 0 !important;
    border-bottom: 1px solid #e7ebf0 !important;
    color: #194f97 !important;
    font-size: 31px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: initial !important;
}

.csv-converter .ccp-plan-card .price {
    margin: 18px 0 22px !important;
    color: #1f2937 !important;
    font-size: 54px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-align: center !important;
}

.csv-converter .ccp-plan-features {
    margin: 0 0 24px !important;
    padding: 0 4px !important;
}

.csv-converter .ccp-plan-features li {
    margin: 0 0 12px !important;
    padding-left: 34px !important;
    color: #1f2937 !important;
    font-size: 23px !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
}

.csv-converter .ccp-plan-features li::before {
    content: "✓" !important;
    top: 0 !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #0a5dc2 !important;
    font-size: 24px !important;
    font-weight: 800 !important;
}

.csv-converter .ccp-plan-card .button {
    width: 100% !important;
    max-width: none !important;
    margin-top: auto !important;
    padding: 16px 20px !important;
    border-radius: 9px !important;
    background: linear-gradient(180deg, #1f72d8 0%, #0454ba 100%) !important;
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-align: center !important;
}

.csv-converter .ccp-code-form {
    margin-top: 6px !important;
    text-align: center !important;
}

.csv-converter .ccp-code-form h3 {
    margin: 0 0 8px !important;
    color: #23262f !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

.csv-converter .ccp-code-form form {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    margin: 0 auto !important;
}

.csv-converter .ccp-code-form input[type="text"] {
    flex: 0 1 340px !important;
    max-width: 340px !important;
    min-width: 220px !important;
    height: 46px !important;
    padding: 0 14px !important;
    border: 1px solid #cfd5dd !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #333 !important;
    font-size: 16px !important;
}

.csv-converter .ccp-code-form button.button,
.csv-converter .ccp-code-form button {
    min-width: 92px !important;
    height: 46px !important;
    padding: 0 18px !important;
    border-radius: 8px !important;
    background: linear-gradient(180deg, #1f72d8 0%, #0454ba 100%) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

@media (min-width: 981px) and (max-width: 1180px) {
    .csv-converter .ccp-plans-three {
        grid-template-columns: repeat(3, minmax(270px, 1fr)) !important;
        gap: 22px !important;
    }

    .csv-converter .ccp-plan-card h3 {
        font-size: 27px !important;
    }

    .csv-converter .ccp-plan-card .price {
        font-size: 48px !important;
    }

    .csv-converter .ccp-plan-features li {
        font-size: 20px !important;
    }

    .csv-converter .ccp-ribbon-wrap {
        width: 122px !important;
        height: 122px !important;
    }

    .csv-converter .ccp-plan-badge {
        top: 24px !important;
        right: -44px !important;
        width: 186px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 980px) {
    .csv-converter .ccp-plans-three {
        grid-template-columns: 1fr !important;
        max-width: 500px !important;
        gap: 28px !important;
        margin-bottom: 30px !important;
    }

    .csv-converter .ccp-ribbon-slot {
        height: 48px !important;
        flex-basis: 48px !important;
    }

    .csv-converter .ccp-ribbon-wrap {
        top: -1px !important;
        left: -1px !important;
        width: 118px !important;
        height: 118px !important;
        border-top-left-radius: 14px !important;
    }

    .csv-converter .ccp-plan-badge {
        top: 24px !important;
        right: -44px !important;
        width: 182px !important;
        padding: 7px 0 !important;
        font-size: 11px !important;
    }

    .csv-converter .ccp-plan-card-inner {
        height: calc(100% - 48px) !important;
        padding: 0 24px 26px !important;
    }

    .csv-converter .ccp-plan-card h3 {
        font-size: 30px !important;
    }

    .csv-converter .ccp-plan-card .price {
        font-size: 50px !important;
    }

    .csv-converter .ccp-plan-features li {
        font-size: 21px !important;
        white-space: normal !important;
    }

    .csv-converter .ccp-code-form h3 {
        font-size: 16px !important;
    }
}


/* === v2.5.10 ribbon proportion cleanup === */
.csv-converter .ccp-ribbon-slot {
    height: 50px !important;
    flex: 0 0 50px !important;
}

.csv-converter .ccp-ribbon-wrap {
    width: 120px !important;
    height: 120px !important;
    border-top-left-radius: 14px !important;
}

.csv-converter .ccp-plan-badge {
    top: 21px !important;
    right: -38px !important;
    width: 172px !important;
    height: 24px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
}

.csv-converter .ccp-plan-card-inner {
    height: calc(100% - 50px) !important;
}

@media (min-width: 981px) and (max-width: 1180px) {
    .csv-converter .ccp-ribbon-slot {
        height: 48px !important;
        flex-basis: 48px !important;
    }

    .csv-converter .ccp-ribbon-wrap {
        width: 116px !important;
        height: 116px !important;
    }

    .csv-converter .ccp-plan-badge {
        top: 20px !important;
        right: -38px !important;
        width: 168px !important;
        height: 23px !important;
        font-size: 12.5px !important;
    }

    .csv-converter .ccp-plan-card-inner {
        height: calc(100% - 48px) !important;
    }
}

@media (max-width: 980px) {
    .csv-converter .ccp-ribbon-slot {
        height: 46px !important;
        flex-basis: 46px !important;
    }

    .csv-converter .ccp-ribbon-wrap {
        width: 112px !important;
        height: 112px !important;
    }

    .csv-converter .ccp-plan-badge {
        top: 19px !important;
        right: -36px !important;
        width: 164px !important;
        height: 22px !important;
        font-size: 12px !important;
    }

    .csv-converter .ccp-plan-card-inner {
        height: calc(100% - 46px) !important;
    }
}

/* === v2.5.11 ribbon center-position refinement === */
.csv-converter .ccp-ribbon-slot {
    height: 52px !important;
    flex: 0 0 52px !important;
}

.csv-converter .ccp-ribbon-wrap {
    width: 126px !important;
    height: 126px !important;
    top: -1px !important;
    left: -1px !important;
}

.csv-converter .ccp-plan-badge {
    top: 40px !important;
    right: -12px !important;
    width: 174px !important;
    height: 24px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    line-height: 1 !important;
}

.csv-converter .ccp-plan-card-inner {
    height: calc(100% - 52px) !important;
}

@media (min-width: 981px) and (max-width: 1180px) {
    .csv-converter .ccp-ribbon-slot {
        height: 50px !important;
        flex-basis: 50px !important;
    }

    .csv-converter .ccp-ribbon-wrap {
        width: 122px !important;
        height: 122px !important;
    }

    .csv-converter .ccp-plan-badge {
        top: 38px !important;
        right: -12px !important;
        width: 170px !important;
        height: 23px !important;
        font-size: 13px !important;
    }

    .csv-converter .ccp-plan-card-inner {
        height: calc(100% - 50px) !important;
    }
}

@media (max-width: 980px) {
    .csv-converter .ccp-ribbon-slot {
        height: 48px !important;
        flex-basis: 48px !important;
    }

    .csv-converter .ccp-ribbon-wrap {
        width: 118px !important;
        height: 118px !important;
    }

    .csv-converter .ccp-plan-badge {
        top: 37px !important;
        right: -12px !important;
        width: 168px !important;
        height: 23px !important;
        font-size: 13px !important;
    }

    .csv-converter .ccp-plan-card-inner {
        height: calc(100% - 48px) !important;
    }
}


/* === v2.5.13 ribbon upper-left nudge refinement === */
.csv-converter .ccp-ribbon-wrap {
    width: 120px !important;
    height: 120px !important;
}

.csv-converter .ccp-plan-badge {
    top: 31px !important;
    right: -12px !important;
    width: 166px !important;
    height: 22px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

@media (min-width: 981px) and (max-width: 1180px) {
    .csv-converter .ccp-ribbon-wrap {
        width: 116px !important;
        height: 116px !important;
    }

    .csv-converter .ccp-plan-badge {
        top: 29px !important;
        right: -12px !important;
        width: 160px !important;
        height: 21px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 980px) {
    .csv-converter .ccp-ribbon-wrap {
        width: 112px !important;
        height: 112px !important;
    }

    .csv-converter .ccp-plan-badge {
        top: 29px !important;
        right: -11px !important;
        width: 154px !important;
        height: 21px !important;
        font-size: 12.5px !important;
    }
}


/* === v2.5.14 slight upper-left ribbon shift === */
.csv-converter .ccp-plan-badge {
    top: 27px !important;
    right: -15px !important;
}

@media (min-width: 981px) and (max-width: 1180px) {
    .csv-converter .ccp-plan-badge {
        top: 25px !important;
        right: -14px !important;
    }
}

@media (max-width: 980px) {
    .csv-converter .ccp-plan-badge {
        top: 26px !important;
        right: -13px !important;
    }
}


/* === v2.5.15 final upper-left ribbon spacing refinement === */
.csv-converter .ccp-plan-badge {
    top: 22px !important;
    right: -20px !important;
}

@media (min-width: 981px) and (max-width: 1180px) {
    .csv-converter .ccp-plan-badge {
        top: 21px !important;
        right: -18px !important;
    }
}

@media (max-width: 980px) {
    .csv-converter .ccp-plan-badge {
        top: 22px !important;
        right: -17px !important;
    }
}


/* === v2.5.16 final ribbon text centering nudge === */
.csv-converter .ccp-plan-badge {
    text-indent: -3px !important;
    letter-spacing: 0.1px !important;
}

@media (min-width: 981px) and (max-width: 1180px) {
    .csv-converter .ccp-plan-badge {
        text-indent: -2.5px !important;
    }
}

@media (max-width: 980px) {
    .csv-converter .ccp-plan-badge {
        text-indent: -2px !important;
    }
}


/* === v2.5.17 final true badge text centering === */
.csv-converter .ccp-plan-badge {
    display: block !important;
    position: absolute !important;
}

.csv-converter .ccp-plan-badge span {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100% !important;
    transform: translate(-50%, -50%) !important;
    display: block !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-indent: 0 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
}

.csv-converter .ccp-plan-badge {
    text-indent: 0 !important;
    letter-spacing: 0 !important;
}

@media (min-width: 981px) and (max-width: 1180px) {
    .csv-converter .ccp-plan-badge span {
        transform: translate(-50%, -50%) !important;
    }
}

@media (max-width: 980px) {
    .csv-converter .ccp-plan-badge span {
        transform: translate(-50%, -50%) !important;
    }
}

/* === v2.5.18 final diagonal ribbon text visual centering === */
.csv-converter .ccp-plan-badge span {
    top: 51% !important;
    left: 49% !important;
    transform: translate(-50%, -50%) !important;
}

@media (min-width: 981px) and (max-width: 1180px) {
    .csv-converter .ccp-plan-badge span {
        top: 51% !important;
        left: 49% !important;
        transform: translate(-50%, -50%) !important;
    }
}

@media (max-width: 980px) {
    .csv-converter .ccp-plan-badge span {
        top: 51% !important;
        left: 49% !important;
        transform: translate(-50%, -50%) !important;
    }
}


/* === v2.5.19 final visible-area ribbon centering === */
.csv-converter .ccp-plan-badge span {
    top: 53% !important;
    left: 47% !important;
    transform: translate(-50%, -50%) !important;
}

@media (min-width: 981px) and (max-width: 1180px) {
    .csv-converter .ccp-plan-badge span {
        top: 53% !important;
        left: 47% !important;
        transform: translate(-50%, -50%) !important;
    }
}

@media (max-width: 980px) {
    .csv-converter .ccp-plan-badge span {
        top: 53% !important;
        left: 47% !important;
        transform: translate(-50%, -50%) !important;
    }
}
