.pricing-section,
.pricing-section table,
.pricing-section th,
.pricing-section td,
.pricing-section h2,
.pricing-section h3,
.pricing-section h4,
.pricing-section p,
.pricing-section a,
.pricing-section span,
.pricing-section div {
    font-family: Outfit, sans-serif !important;
}
/* ===================================================
   Pricing Table  (prefix: pt-)
   =================================================== */

/* Hide CMS artifact spacer paragraphs inside the table container */
.pricing-table > p { display: none; }

.pt-wrap {
    width: 100%;
}

/* ── Table frame — provides border, radius, and clips corners ── */
.pt-table-frame {
    border-radius: 12px;
    overflow: hidden;
    /* border-left: 1px solid #DEEFFF;
    border-right: 1px solid #DEEFFF;
    border-bottom: 1px solid #DEEFFF; */
}

/* ── Table container — handles horizontal scroll only ── */
.pt-table-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary, #3A66D4) #E8EDFB;
}

.pt-table-container::-webkit-scrollbar {
    height: 4px;
}

.pt-table-container::-webkit-scrollbar-track {
    background: #E8EDFB;
}

.pt-table-container::-webkit-scrollbar-thumb {
    background: var(--color-primary, #3A66D4);
    border-radius: 100px;
}

/* ── Table ── */
.table-wrap{
    width: 100%;
    border-radius: 30px;
    border: 1px solid #E4F2FF;
    background: white;
    box-shadow: 0px 0px 19.5px 0px #F0EEFF;
    padding: 40px;
    margin-top: 80px;
}
.pt-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 520px;
}
.table-desc{
    font-family: Outfit;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-top: 19px;
    color: #676B7E;
}
/* ── Head ── */
.pt-table thead tr {
    background: #fff;
    border-bottom: 1.5px solid var(--color-primary-lighter, #EEF3FC);
}

.pt-table thead th {
    padding: 27px 0px 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;

    text-transform: uppercase;
    color: var(--color-primary, #3A66D4);
    text-align: center;
    white-space: nowrap;
}

/* Highlight last (fastest) deadline column */
.pt-table thead th:last-child {
    color: var(--color-primary, #3A66D4);
    border-radius: 0 12px 0 0;
}

.pt-row td:last-child {
    font-weight: 600;
    color: var(--color-primary, #3A66D4);
    border-right: 1px solid #DEEFFF;
}

.pt-th-cat {
    
    min-width: 110px;
}

.pt-th-opt {
    text-align: left !important;
    min-width: 160px;
    padding-left: 29px !important;
}
.pt-blank{
    background: white;
}
/* ── Category label cell (rowspan) ── */
.pt-cat-label {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #1F2937 !important;
    text-align: left;
    vertical-align: middle;
    padding: 15px 20px;
    border-right: 1px solid #DEEFFF;
    white-space: nowrap;
    background: #F2F5FF !important;
}

/* ── Data rows ── */
.pt-row td {
    padding: 15px 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: var(--color-heading);
    border: 1px solid #DEEFFF;
    border-left: none;
    border-right: none;
    text-align: center;
    vertical-align: middle;
    border-bottom: none;
}
.pt-last-in-group .pt-row td{

    border-bottom: 1px solid #DEEFFF;
}
.pt-row td strong{
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: 600;
    color:var(--color-heading);
}
/* Category label — no row grid border; only right separator + bottom group divider */
.pt-row td.pt-cat-label {
    border-left: 1px solid #DEEFFF;
    border-top: 1px solid #DEEFFF;
    border-right: 1px solid #DEEFFF;
    border-bottom: 1px solid #DEEFFF;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

/* Last category label (Delivery Speed) — no bottom border */
.pt-row td.pt-cat-label--last {
    width: 277px;
}

/* Blank spacer row between groups */
.pt-blank td {
    height: 40px;
    padding: 0 !important;
    background: #fff;
    border: none !important;
}

/* Last row in each group gets a heavier bottom border */
.pt-last-in-group td {
    border-bottom: 1.5px solid var(--color-primary-lighter, #EEF3FC);
}

/* Very last row — no bottom border so it sits flush inside the container */


.pt-row:hover td,
.pt-row:hover .pt-cat-label {
    background: #F5F8FF;
}

/* Option cell — left-aligned */
.pt-opt-cell {
    text-align: left !important;
    font-weight: 400;
    color: var(--color-heading);
    min-width: 150px;
    font-size: 16px;
    line-height: 100%;
    padding: 25px 0px 25px 29px !important;
    border: none !important;
    border-top: 1px solid #DEEFFF !important;

}
.pt-last-in-group .pt-opt-cell{
    border-bottom: 1px solid #DEEFFF !important;

}
tbody .pt-row:first-child td:last-child{
    border-top-right-radius: 12px;
}
tbody .pt-row:last-child td:last-child{
    border-bottom-right-radius: 12px;
}
/* Sub-label under option name */
.pt-sub {
    font-size: 11.5px;
    font-weight: 400;
    color: #8B95A5;
    display: block;
    margin-top: 2px;
}

/* Price cells */
.pt-row td:not(.pt-cat-label):not(.pt-opt-cell):not(.pt-value-cell) {
    font-weight: 400;
    font-size: 16px;
    color: #1F2937;
}

/* Plain-text value cell (spans 4 deadline columns) */
.pt-value-cell {
    text-align: right !important;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    padding-right: 24px !important;
}

.pt-value-included {
    color: var(--color-primary, #3A66D4);
}

.pt-value-addon {
    color: #E76F51;
}

/* ===== Options Grid (Writer Level / Delivery Speed) ===== */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 32px;
}

/* Each section: flex row — label sidebar left, cards right */
.option-section {
    display: flex;
    border: 1px solid #DEEFFF;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

/* Left sidebar: category label */
.option-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    background: #F2F5FF;
    border-right: 1px solid #DEEFFF;
    padding: 20px 12px;
    flex-shrink: 0;
    width: 183px;
}

.option-section-label h3 {
    font-size: 17px;
    font-weight: 500;
    color: #1F2937;
    font-family: var(--font-primary);
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Right side: stacked rows */
.option-section-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.option-card {
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid #EEF3FF;
    transition: background 0.2s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.option-card:last-child {
    border-bottom: none;
}

.option-card:hover {
    background: #F8FAFF;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.option-name {
    font-size: 16px;
    font-weight: 500;
    color: #1F2937;
}

.option-price {
    font-size: 16px;
    font-weight: 400;
    color: #1F2937;
    white-space: nowrap;
    text-align: right;
}

.option-desc {
    font-size: 14px;
    font-weight: 400;
    color: #676B7E;
    margin-top: 2px;
}

/* ===== Addons Section ===== */
.addons-section {
    margin-top: 32px;
}

.addons-section > h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 12px;
}

.addon-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border: 1px solid #DEEFFF;
    border-bottom: none;
    background: #fff;
}

.addon-card:first-of-type { border-radius: 10px 10px 0 0; }
.addon-card:last-child { border-bottom: 1px solid #DEEFFF; border-radius: 0 0 10px 10px; }

.addon-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-heading);
    margin: 0 0 2px;
}

.addon-info p {
    font-size: 12px;
    color: #8B95A5;
    margin: 0;
}

.addon-price {
    font-size: 14px;
    font-weight: 600;
    color: #E76F51;
    white-space: nowrap;
}

/* ===== Guarantees Bar ===== */
.guarantees-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    padding: 24px;
    background: #F5F8FF;
    border: 1px solid #DEEFFF;
    border-radius: 12px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-guarantee-icon {
    font-size: 22px;
}

.guarantee-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-heading);
    margin: 0 0 2px;
}

.guarantee-text p {
    font-size: 12px;
    color: #8B95A5;
    margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .option-section-label {
        min-width: 130px;
        width: unset;
    }
    .table-wrap {
        padding: 28px;
        margin-top: 60px;
    }
    .pt-blank td {
        height: 28px;
    }
}

@media (max-width: 767px) {
    .table-wrap {
        padding: 20px;
        margin-top: 40px;
        border-radius: 20px;
    }
    .pt-table thead th {
        padding: 18px 8px 14px;
        font-size: 12px;
    }
    .pt-row td {
        padding: 12px 10px;
        font-size: 14px;
    }
    .pt-row td strong {
        font-size: 15px;
    }
    .pt-cat-label {
        font-size: 14px !important;
        padding: 12px 14px;
    }
    .pt-opt-cell {
        padding: 14px 0 14px 18px !important;
        font-size: 14px;
        min-width: 130px;
    }
    .pt-blank td {
        height: 20px;
    }
    .option-name,
    .option-price {
        font-size: 14px;
    }
    .option-desc {
        font-size: 13px;
    }
    .option-card {
        padding: 12px 16px;
    }
    .options-grid {
        gap: 16px;
        margin-top: 20px;
    }
    .addons-section {
        margin-top: 20px;
    }
    .addons-section > h3 {
        font-size: 16px;
    }
    .addon-card {
        padding: 12px 16px;
    }
    .addon-info h4 {
        font-size: 14px;
    }
    .guarantees-bar {
        gap: 16px;
        padding: 16px;
        margin-top: 20px;
    }
    .guarantee-text h4 {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .table-wrap {
        padding: 14px;
        border-radius: 16px;
    }
    .pt-table thead th {
        padding: 12px 6px 10px;
        font-size: 11px;
    }
    .pt-row td {
        padding: 10px 8px;
        font-size: 13px;
    }
    .pt-row td strong {
        font-size: 14px;
    }
    .pt-cat-label {
        font-size: 14px !important;
        padding: 10px 10px;
        white-space: normal;
        min-width: 80px;
    }
    
    .pt-th-cat {
        min-width: 80px;
    }
    .pt-th-opt,
    .pt-opt-cell {
        min-width: 110px;
    }
    .pt-opt-cell {
        padding: 10px 0 10px 12px !important;
        font-size: 13px;
    }
    .pt-blank td {
        height: 14px;
    }
    .options-grid {
        gap: 12px;
    }
    .option-section {
        flex-direction: column;
    }
    .option-section-label {
        min-width: unset;
        border-right: none;
        border-bottom: 1px solid #DEEFFF;
        padding: 12px 16px;
        justify-content: flex-start;
    }
    .option-section-label h3 {
        font-size: 14px;
        text-align: left;
    }
    .guarantees-bar {
        gap: 12px;
        padding: 12px;
    }
}

/* ── CTA Banner ── */
.pt-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #3A66D4;
    border-radius: 30px;
    margin-top: 30px;
    padding: 50px 99px 50px 71px;
    position: relative;
    overflow: hidden;
}

/* Decorative circle — right side */
.pt-cta::before {
    content: '';
    position: absolute;
    right: -55px;
    top: -37px;
    width: 158px;
    height: 158px;
    border-radius: 50%;
    background: #325CC7;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content is above decorative shapes */
.pt-cta-text,
.pt-cta-btn {
    position: relative;
    z-index: 1;
}

.pt-cta-text {
    font-weight: 500;
    font-size: 25px;
    line-height: 150%;
    color: white;
    margin: 0;
    flex: 1;
}

/* CTA Button */
@keyframes ptBtnPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70%  { box-shadow: 0 0 0 16px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.pt-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 17px 32px;
    border-radius: 13px;
    background: white;
    color: var(--color-primary, #3A66D4);
    font-weight: 600;
    font-size: 16px;
    height: 45px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    animation: ptBtnPulse 2.2s ease-out infinite;
}

.pt-cta-btn:hover {
    background: #f0f5ff;
    color: var(--color-primary, #3A66D4);
    transform: translateY(-2px);
}

/* Responsive CTA */
@media (max-width: 767px) {
    .pt-cta {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .pt-cta-text {
        font-size: 20px;
        text-align: center;
    }
    .pt-cta-btn {
        width: 100%;
    }
}

/* ── Responsive ── */
@media (max-width: 575px) {
    .pt-cta {
        padding: 20px 16px;
        border-radius: 20px;
    }
    .pt-row td:not(.pt-cat-label):not(.pt-opt-cell):not(.pt-value-cell) {
   
    font-size: 12px;
     
}
    .pt-cta-text {
        font-size: 18px;
    }
    .pt-cta-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    .table-desc {
 
    font-size: 14px;
   
}
}
