@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes pgPulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(.85)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

/* LAYOUT */
.pti-wrap {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 16px;
    margin-top: 14px;
    align-items: start;
}

.pti-left {
    position: sticky;
    top: 76px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* DROP ZONE */
.pti-dropzone {
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    background: var(--header-bg);
    cursor: pointer;
    transition: border-color .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.pti-dropzone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, .05), transparent);
    opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
}

.pti-dropzone:hover,
.pti-dropzone.drag-over {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, .09), var(--box-shadow);
}

.pti-dropzone:hover::before,
.pti-dropzone.drag-over::before {
    opacity: 1;
}

.pti-dz-full {
    padding: 38px 20px 32px;
    text-align: center;
}

.pti-dz-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(99, 102, 241, .13), rgba(129, 140, 248, .07));
    border-radius: 18px;
    border: 1px solid rgba(99, 102, 241, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    animation: floatY 3s ease-in-out infinite;
}

.pti-dz-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.pti-dz-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 5px;
}

.pti-dz-sub {
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 14px;
}

.pti-dz-badges {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.pti-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--section-bg);
    color: var(--gray-text);
}

.btn-pti-upload {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 4px 16px rgba(99, 102, 241, .32);
}

.btn-pti-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, .45);
}

/* MINI DROP ZONE */
.pti-dz-mini {
    display: none;
    padding: 10px 14px;
    align-items: center;
    gap: 10px;
}

.pti-dz-mini-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    flex-shrink: 0;
    background: rgba(99, 102, 241, .1);
    border: 1px solid rgba(99, 102, 241, .2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pti-dz-mini-icon i {
    font-size: 16px;
    color: var(--primary-color);
}

.pti-dz-mini-text {
    flex: 1;
}

.pti-dz-mini-text b {
    font-size: 12px;
    color: var(--primary-text);
    display: block;
}

.pti-dz-mini-text span {
    font-size: 11px;
    color: var(--gray-text);
}

.pti-btn-addmore {
    flex-shrink: 0;
    padding: 6px 12px;
    border-radius: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    transition: all .2s;
    white-space: nowrap;
}

.pti-btn-addmore:hover {
    opacity: .85;
    transform: translateY(-1px);
}

.pti-wrap.has-files .pti-dz-full {
    display: none;
}

.pti-wrap.has-files .pti-dz-mini {
    display: flex;
}

/* QUEUE CARD */
.pti-queue-card {
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.pti-queue-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
}

.pti-queue-head-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-text);
}

.pti-queue-count {
    font-size: 11px;
    color: var(--gray-text);
}

.pti-queue-list {
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.pti-queue-list::-webkit-scrollbar {
    width: 3px;
}

.pti-queue-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.pti-file-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-bottom: 1px solid var(--divider);
    transition: background .15s;
    animation: fadeUp .3s ease;
}

.pti-file-item:last-child {
    border-bottom: none;
}

.pti-file-item:hover {
    background: var(--section-bg);
}

.pti-file-thumb {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f43f5e, #fb923c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    position: relative;
}

.pti-sdot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid var(--header-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6px;
    font-weight: 700;
    color: white;
}

.dot-wait {
    background: #94a3b8;
}

.dot-proc {
    background: var(--primary-color);
    animation: pgPulse .8s infinite;
}

.dot-done {
    background: #10b981;
}

.dot-err {
    background: #ef4444;
}

.pti-file-info {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    overflow: hidden;
}

.pti-file-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    display: block;
    width: 100%;
    min-width: 0;
}

.pti-file-meta {
    font-size: 10px;
    color: var(--gray-text);
    margin-top: 2px;
}

.pti-fprog {
    height: 3px;
    background: var(--border);
    border-radius: 4px;
    margin-top: 4px;
    overflow: hidden;
}

.pti-fprog-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width .3s;
    width: 0%;
}

.pti-btn-del {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: none;
    background: rgba(244, 63, 94, .1);
    color: #f43f5e;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.pti-btn-del:hover {
    background: rgba(244, 63, 94, .22);
}

/* SETTINGS CARD */
.pti-settings-card {
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.pti-set-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
}

.pti-set-toggle.open {
    border-color: var(--border);
}

.pti-set-toggle-l {
    display: flex;
    align-items: center;
    gap: 7px;
}

.pti-set-toggle-l i {
    font-size: 15px;
    color: var(--primary-color);
}

.pti-set-toggle-l span {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-text);
}

.pti-set-arrow {
    font-size: 13px;
    color: var(--gray-text);
    transition: transform .25s;
}

.pti-set-toggle.open .pti-set-arrow {
    transform: rotate(180deg);
}

.pti-set-body {
    display: none;
    padding: 14px;
    flex-direction: column;
    gap: 14px;
}

.pti-set-body.open {
    display: flex;
}

.pti-srow {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pti-slabel {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: .8px;
}

.pti-pills {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.pti-pill {
    padding: 5px 12px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--section-bg);
    color: var(--primary-text);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .18s;
}

.pti-pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pti-pill.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pti-scale-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.pti-scale-btn {
    padding: 7px 3px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--section-bg);
    color: var(--primary-text);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all .18s;
    line-height: 1.3;
}

.pti-scale-btn small {
    display: block;
    font-weight: 400;
    font-size: 9px;
    color: var(--gray-text);
}

.pti-scale-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pti-scale-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pti-scale-btn.active small {
    color: rgba(255, 255, 255, .7);
}

.pti-toggle-row {
    display: flex;
    align-items: center;
    gap: 9px;
}

.pti-toggle {
    width: 38px;
    height: 21px;
    background: var(--border);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: background .25s;
    flex-shrink: 0;
}

.pti-toggle.on {
    background: var(--primary-color);
}

.pti-toggle::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: left .25s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

.pti-toggle.on::after {
    left: 20px;
}

.pti-toggle-label {
    font-size: 12px;
    color: var(--primary-text);
}

.pti-q-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pti-q-row input[type=range] {
    flex: 1;
    accent-color: var(--primary-color);
}

.pti-q-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 34px;
    text-align: right;
}

.pti-range-inputs {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
}

.pti-range-box {
    width: 64px;
    padding: 6px 9px;
    border-radius: 8px;
    background: var(--section-bg);
    border: 1.5px solid var(--border);
    color: var(--primary-text);
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    outline: none;
    transition: border-color .2s;
}

.pti-range-box:focus {
    border-color: var(--primary-color);
}

.pti-range-sep {
    color: var(--gray-text);
    font-size: 12px;
}

/* CONVERT BTN */
.pti-btn-convert {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 13px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 4px 16px rgba(99, 102, 241, .28);
}

.pti-btn-convert:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(99, 102, 241, .42);
}

.pti-btn-convert:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

/* RIGHT */
.pti-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* GLOBAL PROGRESS */
.pti-gp {
    display: none;
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    animation: fadeUp .35s ease;
    box-shadow: var(--box-shadow);
}

.pti-gp.show {
    display: block;
}

.pti-gp-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
}

.pti-gp-status {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.pti-gp-pct {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-text);
}

.pti-gp-bar {
    height: 7px;
    background: var(--section-bg);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.pti-gp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #818cf8);
    border-radius: 50px;
    transition: width .3s;
    width: 0%;
}

.pti-pdots {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 10px;
}

.pti-pdot {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--section-bg);
    font-size: 9px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    transition: all .3s;
}

.pti-pdot.done {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.pti-pdot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    animation: pgPulse .8s infinite;
}

/* ALL BAR */
.pti-all-bar {
    display: none;
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    animation: fadeUp .35s ease;
    box-shadow: var(--box-shadow);
}

.pti-all-bar.show {
    display: flex;
}

.pti-all-bar-info {
    font-size: 13px;
    color: var(--primary-text);
    font-weight: 600;
}

.pti-all-bar-info span {
    color: var(--primary-color);
}

.pti-bar-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* PDF RESULT BLOCK */
.pti-pdf-block {
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--box-shadow);
}

.pti-pb-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    user-select: none;
}

.pti-pb-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f43f5e, #fb923c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.pti-pb-info {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    overflow: hidden;
}

.pti-pb-name {
    display: block;
    width: 100%;
    min-width: 0;

    font-size: 12px;
    font-weight: 700;
    color: var(--primary-text);

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pti-pb-meta {
    display: flex;
    gap: 5px;
    margin-top: 3px;
    flex-wrap: wrap;
}

.pti-rc {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 20px;
    background: rgba(99, 102, 241, .1);
    border: 1px solid rgba(99, 102, 241, .2);
    color: var(--primary-color);
}

.pti-pb-chevron {
    font-size: 14px;
    color: var(--gray-text);
    transition: transform .25s;
}

.pti-pdf-block.collapsed .pti-pb-chevron {
    transform: rotate(-90deg);
}

.pti-pb-actions {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    padding: 9px 14px;
    border-bottom: 1px solid var(--border);
    background: var(--section-bg);
}

.pti-btn-act {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--header-bg);
    color: var(--primary-text);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all .18s;
    font-family: "Poppins", sans-serif;
}

.pti-btn-act:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(99, 102, 241, .06);
}

.pti-btn-act.primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pti-btn-act.primary:hover {
    background: #4f46e5;
    color: white;
}

.pti-view-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 14px;
    border-bottom: 1px solid var(--border);
}

.pti-view-btns {
    display: flex;
    gap: 4px;
}

.pti-view-btn {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    border: 1.5px solid var(--border);
    background: var(--section-bg);
    color: var(--gray-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .18s;
    font-size: 13px;
}

.pti-view-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pti-total-lbl {
    font-size: 11px;
    color: var(--gray-text);
}

/* IMAGE GRID */
.pti-img-grid {
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 9px;
}

.pti-img-grid.list-view {
    grid-template-columns: 1fr;
    padding: 9px 12px;
}

.pti-img-card {
    background: var(--section-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all .22s;
    animation: popIn .3s ease;
    cursor: pointer;
}

.pti-img-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
    border-color: rgba(99, 102, 241, .3);
}

.pti-img-wrap {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.pti-img-wrap img {
    width: 100%;
    display: block;
    transition: transform .3s;
}

.pti-img-card:hover .pti-img-wrap img {
    transform: scale(1.04);
}

.pti-img-ov {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    opacity: 0;
    transition: opacity .2s;
}

.pti-img-card:hover .pti-img-ov {
    opacity: 1;
}

.pti-ov-btn {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #1e293b;
    transition: all .15s;
}

.pti-ov-btn:hover {
    background: white;
    transform: scale(1.1);
}

.pti-img-foot {
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}

.pti-pg-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-text);
}

.pti-pg-dim {
    font-size: 9px;
    color: var(--gray-text);
}

.pti-btn-dl-s {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(99, 102, 241, .1);
    border: 1px solid rgba(99, 102, 241, .2);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all .18s;
}

.pti-btn-dl-s:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* list view */
.pti-img-grid.list-view .pti-img-card {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px;
}

.pti-img-grid.list-view .pti-img-wrap {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 6px;
}

.pti-img-grid.list-view .pti-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pti-img-grid.list-view .pti-img-foot {
    flex: 1;
    border-top: none;
    padding: 0;
}

/* collapsed */
.pti-pdf-block.collapsed .pti-pb-actions,
.pti-pdf-block.collapsed .pti-view-row,
.pti-pdf-block.collapsed .pti-img-grid {
    display: none;
}

/* EMPTY */
.pti-empty {
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 48px 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.pti-empty i {
    font-size: 42px;
    color: var(--border);
    display: block;
    margin-bottom: 10px;
}

.pti-empty p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* LIGHTBOX */
.pti-lb {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pti-lb.open {
    display: flex;
}

.pti-lb-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.pti-lb-inner img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    display: block;
}

.pti-lb-close {
    position: absolute;
    top: -13px;
    right: -13px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
}

.pti-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    color: white;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.pti-lb-nav:hover {
    background: rgba(255, 255, 255, .3);
}

.pti-lb-prev {
    left: -50px;
}

.pti-lb-next {
    right: -50px;
}

.pti-lb-info {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
    white-space: nowrap;
}

/* TOAST */
.pti-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(70px);
    background: var(--header-bg);
    border: 1px solid var(--border);
    color: var(--primary-text);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    z-index: 9999;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    box-shadow: var(--box-shadow);
}

.pti-toast.show {
    transform: translateX(-50%) translateY(0);
}

/* RESPONSIVE */
@media(max-width:900px) {
    .pti-wrap {
        grid-template-columns: 1fr;
    }

    .pti-left {
        position: static;
    }
}

@media(max-width:600px) {
    .pti-img-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pti-lb-prev,
    .pti-lb-next {
        display: none;
    }

    .pti-pb-actions {
        gap: 4px;
    }

    .pti-btn-act {
        padding: 5px 9px;
        font-size: 10px;
    }
}

@media(max-width:380px) {
    .pti-img-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}



/* Paste this CSS before </style> */
.pti-how-section {
    margin-top: 30px;
    padding: 76px 0 34px;
    background:
        radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.12), transparent 28%),
        radial-gradient(circle at 85% 75%, rgba(129, 140, 248, 0.12), transparent 30%),
        var(--body-background);
}

.pti-how-head {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.pti-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 50px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.22);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.pti-how-head h2 {
    color: var(--primary-text);
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.15;
    margin-bottom: 12px;
}

.pti-how-head p {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.8;
}

.pti-how-layout {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 22px;
    align-items: stretch;
}

.pti-steps-card,
.pti-guide-panel {
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--card-shadow);
}

.pti-steps-card {
    padding: 20px;
}

.pti-step-item {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.pti-step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 47px;
    top: 76px;
    width: 2px;
    height: calc(100% - 42px);
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.4), transparent);
}

.pti-step-item:hover {
    background: var(--section-bg);
    transform: translateY(-2px);
}

.pti-step-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(129, 140, 248, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.18);
    color: var(--primary-color);
    font-size: 25px;
    z-index: 1;
}

.pti-step-content span {
    display: inline-block;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.pti-step-content h3 {
    color: var(--primary-text);
    font-size: 17px;
    margin-bottom: 6px;
}

.pti-step-content p {
    color: var(--gray-text);
    font-size: 13px;
    line-height: 1.7;
}

.pti-guide-panel {
    position: relative;
    overflow: hidden;
    padding: 22px;
}

.pti-panel-glow {
    position: absolute;
    width: 190px;
    height: 190px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.18);
    filter: blur(10px);
    pointer-events: none;
}

.pti-preview-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.pti-preview-file {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.pti-preview-file i {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f43f5e, #fb923c);
    color: #fff;
    font-size: 23px;
    flex-shrink: 0;
}

.pti-preview-file strong {
    display: block;
    color: var(--primary-text);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pti-preview-file span {
    display: block;
    color: var(--gray-text);
    font-size: 12px;
    margin-top: 2px;
}

.pti-status-pill {
    flex-shrink: 0;
    padding: 6px 10px;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.22);
    font-size: 11px;
    font-weight: 700;
}

.pti-output-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.pti-output-card {
    padding: 15px 10px;
    border-radius: 16px;
    background: var(--section-bg);
    border: 1px solid var(--border);
    text-align: center;
    transition: 0.25s ease;
}

.pti-output-card:hover {
    border-color: rgba(99, 102, 241, 0.38);
    transform: translateY(-2px);
}

.pti-output-card span {
    display: inline-flex;
    padding: 4px 9px;
    border-radius: 50px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 9px;
}

.pti-output-card strong {
    display: block;
    color: var(--primary-text);
    font-size: 12px;
    line-height: 1.45;
}

.pti-tips-box {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(129, 140, 248, 0.04));
    border: 1px solid rgba(99, 102, 241, 0.18);
    margin-bottom: 18px;
}

.pti-tips-box h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-text);
    font-size: 16px;
    margin-bottom: 12px;
}

.pti-tips-box h3 i {
    color: var(--primary-color);
}

.pti-tips-box ul {
    list-style: none;
}

.pti-tips-box li {
    position: relative;
    color: var(--gray-text);
    font-size: 13px;
    line-height: 1.7;
    padding-left: 20px;
    margin-bottom: 8px;
}

.pti-tips-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.pti-start-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 18px;
    border-radius: 16px;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(99, 102, 241, 0.32);
    transition: 0.28s ease;
}

.pti-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(99, 102, 241, 0.42);
}

@media (max-width: 900px) {
    .pti-how-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .pti-how-section {
        padding: 54px 0 24px;
    }

    .pti-steps-card,
    .pti-guide-panel {
        border-radius: 18px;
    }

    .pti-steps-card {
        padding: 10px;
    }

    .pti-step-item {
        grid-template-columns: 48px 1fr;
        gap: 12px;
        padding: 14px;
    }

    .pti-step-icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        font-size: 21px;
    }

    .pti-step-item:not(:last-child)::after {
        left: 38px;
        top: 64px;
    }

    .pti-output-grid {
        grid-template-columns: 1fr;
    }

    .pti-preview-top {
        align-items: flex-start;
        flex-direction: column;
    }
}



/* Features Section CSS */
.pti-features-section {
    padding: 70px 0 36px;
    background: var(--section-bg);
}

.pti-features-head {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.pti-features-head h2 {
    color: var(--primary-text);
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.15;
    margin-bottom: 12px;
}

.pti-features-head p {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.8;
}

.pti-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pti-feature-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 20px;
    background: var(--header-bg);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    transition: 0.3s ease;
}

.pti-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), transparent 45%);
    opacity: 0;
    transition: 0.3s ease;
}

.pti-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 18px 45px rgba(99, 102, 241, 0.14);
}

.pti-feature-card:hover::before {
    opacity: 1;
}

.pti-feature-icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(129, 140, 248, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.18);
    color: var(--primary-color);
    font-size: 25px;
    margin-bottom: 18px;
}

.pti-feature-card h3 {
    position: relative;
    color: var(--primary-text);
    font-size: 17px;
    margin-bottom: 9px;
}

.pti-feature-card p {
    position: relative;
    color: var(--gray-text);
    font-size: 13px;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .pti-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .pti-features-section {
        padding: 52px 0 26px;
    }

    .pti-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pti-feature-card {
        padding: 20px;
        border-radius: 18px;
    }
}



/* Content Section CSS */
.pti-content-section {
    padding: 72px 0 38px;
    background:
        linear-gradient(180deg, var(--body-background), var(--section-bg));
}

.pti-content-wrap {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 28px;
    align-items: center;
}

.pti-content-left {
    padding: 8px 0;
}

.pti-content-left h2 {
    color: var(--primary-text);
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.15;
    margin-bottom: 16px;
}

.pti-content-left p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 14px;
}

.pti-content-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.pti-content-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border-radius: 15px;
    background: var(--header-bg);
    border: 1px solid var(--border);
    color: var(--primary-text);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--card-shadow);
}

.pti-content-points i {
    color: #10b981;
    font-size: 18px;
    flex-shrink: 0;
}

.pti-content-right {
    display: grid;
    gap: 14px;
}

.pti-info-card {
    display: flex;
    gap: 15px;
    padding: 18px;
    border-radius: 20px;
    background: var(--header-bg);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    transition: 0.3s ease;
}

.pti-info-card:hover,
.pti-info-card.active {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.35);
    background:
        linear-gradient(135deg, rgba(99, 102, 241, 0.08), transparent),
        var(--header-bg);
}

.pti-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.18);
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.pti-info-card h3 {
    color: var(--primary-text);
    font-size: 16px;
    margin-bottom: 6px;
}

.pti-info-card p {
    color: var(--gray-text);
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .pti-content-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .pti-content-section {
        padding: 52px 0 28px;
    }

    .pti-content-points {
        grid-template-columns: 1fr;
    }

    .pti-info-card {
        padding: 16px;
        border-radius: 18px;
    }
}




/* Example Section CSS */
.pti-example-section {
    padding: 72px 0 40px;
    background:
        radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.1), transparent 26%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.08), transparent 28%),
        var(--body-background);
}

.pti-example-head {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.pti-example-head h2 {
    color: var(--primary-text);
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.15;
    margin-bottom: 12px;
}

.pti-example-head p {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.8;
}

.pti-example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pti-example-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 22px;
    background: var(--header-bg);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    transition: 0.3s ease;
}

.pti-example-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.09), transparent 48%);
    opacity: 0;
    transition: 0.3s ease;
}

.pti-example-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 18px 44px rgba(99, 102, 241, 0.14);
}

.pti-example-card:hover::before,
.pti-example-card.featured::before {
    opacity: 1;
}

.pti-example-card.featured {
    border-color: rgba(99, 102, 241, 0.34);
}

.pti-example-top {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 34px 64px;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.pti-example-pdf {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px;
    border-radius: 16px;
    background: var(--section-bg);
    border: 1px solid var(--border);
}

.pti-example-pdf i {
    color: #f43f5e;
    font-size: 22px;
    flex-shrink: 0;
}

.pti-example-pdf span {
    color: var(--primary-text);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pti-arrow {
    color: var(--primary-color);
    font-size: 22px;
    text-align: center;
}

.pti-example-img {
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.28);
}

.pti-example-card h3 {
    position: relative;
    color: var(--primary-text);
    font-size: 17px;
    margin-bottom: 8px;
}

.pti-example-card p {
    position: relative;
    color: var(--gray-text);
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.pti-example-tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pti-example-tags span {
    padding: 6px 10px;
    border-radius: 50px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.18);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
}

.pti-example-flow {
    margin-top: 20px;
    padding: 18px;
    border-radius: 22px;
    background: var(--header-bg);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    display: grid;
    grid-template-columns: 1fr 36px 1fr 36px 1fr;
    gap: 12px;
    align-items: center;
}

.pti-example-flow > i {
    color: var(--primary-color);
    text-align: center;
    font-size: 22px;
}

.pti-flow-item {
    padding: 15px;
    border-radius: 16px;
    background: var(--section-bg);
    border: 1px solid var(--border);
    text-align: center;
}

.pti-flow-item strong {
    display: block;
    color: var(--primary-text);
    font-size: 14px;
    margin-bottom: 4px;
}

.pti-flow-item span {
    color: var(--gray-text);
    font-size: 12px;
}

@media (max-width: 900px) {
    .pti-example-grid {
        grid-template-columns: 1fr;
    }

    .pti-example-flow {
        grid-template-columns: 1fr;
    }

    .pti-example-flow > i {
        transform: rotate(90deg);
    }
}

@media (max-width: 560px) {
    .pti-example-section {
        padding: 52px 0 28px;
    }

    .pti-example-card {
        padding: 18px;
        border-radius: 18px;
    }

    .pti-example-top {
        grid-template-columns: 1fr;
    }

    .pti-arrow {
        transform: rotate(90deg);
    }
}




/* FAQ Section CSS */
.pti-faq-section {
    padding: 72px 0 40px;
    background: var(--section-bg);
}

.pti-faq-head {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.pti-faq-head h2 {
    color: var(--primary-text);
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.15;
    margin-bottom: 12px;
}

.pti-faq-head p {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.8;
}

.pti-faq-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.pti-faq-item {
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: 0.3s ease;
}

.pti-faq-item:hover,
.pti-faq-item.active {
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 16px 38px rgba(99, 102, 241, 0.12);
}

.pti-faq-question {
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
    color: var(--primary-text);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    font-family: "Poppins", sans-serif;
}

.pti-faq-question span {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

.pti-faq-question i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    font-size: 17px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.pti-faq-item.active .pti-faq-question i {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: #fff;
}

.pti-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s ease;
}

.pti-faq-answer p {
    color: var(--gray-text);
    font-size: 13px;
    line-height: 1.8;
    padding: 0 20px 18px;
}

.pti-faq-item.active .pti-faq-answer {
    max-height: 180px;
}

@media (max-width: 560px) {
    .pti-faq-section {
        padding: 52px 0 28px;
    }

    .pti-faq-question {
        padding: 16px;
    }

    .pti-faq-question span {
        font-size: 14px;
    }

    .pti-faq-answer p {
        padding: 0 16px 16px;
    }
}



/* Related Tools Section CSS */
.pti-related-section {
    padding: 72px 0 46px;
    background:
        radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.1), transparent 28%),
        var(--body-background);
}

.pti-related-head {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.pti-related-head h2 {
    color: var(--primary-text);
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.15;
    margin-bottom: 12px;
}

.pti-related-head p {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.8;
}

.pti-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pti-related-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 145px;
    padding: 20px;
    border-radius: 20px;
    background: var(--header-bg);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    transition: 0.3s ease;
}

.pti-related-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.09), transparent 48%);
    opacity: 0;
    transition: 0.3s ease;
}

.pti-related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 18px 45px rgba(99, 102, 241, 0.14);
}

.pti-related-card:hover::before {
    opacity: 1;
}

.pti-related-icon {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.18);
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.pti-related-card h3 {
    position: relative;
    color: var(--primary-text);
    font-size: 16px;
    margin-bottom: 7px;
}

.pti-related-card p {
    position: relative;
    color: var(--gray-text);
    font-size: 13px;
    line-height: 1.7;
    padding-right: 20px;
}

.pti-related-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--section-bg);
    border: 1px solid var(--border);
    color: var(--primary-color);
    font-size: 17px;
    transition: 0.3s ease;
}

.pti-related-card:hover .pti-related-arrow {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .pti-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .pti-related-section {
        padding: 52px 0 30px;
    }

    .pti-related-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pti-related-card {
        min-height: auto;
        padding: 18px;
        border-radius: 18px;
    }
}