/* =========================================================
   PDF VERSION CHECKER
   Complete Tool Styles
   ========================================================= */

:root {
    --pvc-bg: #f3f6fb;
    --pvc-surface: #ffffff;
    --pvc-ink: #172033;
    --pvc-muted: #687386;
    --pvc-soft: #e8edf5;
    --pvc-line: #dce3ed;
    --pvc-primary: #315bea;
    --pvc-primary-dark: #2448c7;
    --pvc-primary-soft: #eef2ff;
    --pvc-success: #16845b;
    --pvc-danger: #d94747;
    --pvc-shadow: 0 24px 70px rgba(27, 43, 75, .10);
}


/* =========================================================
   BASE
   ========================================================= */

.pdf-version-page {
    background: var(--pvc-bg);
    color: var(--pvc-ink);
    overflow: hidden;
}

.pdf-version-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.pdf-version-hero {
    position: relative;
    padding: 90px 0 150px;
    background:
        radial-gradient(circle at 15% 25%, rgba(49, 91, 234, .10), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(92, 125, 255, .08), transparent 25%),
        #f3f6fb;
}

.pdf-version-hero::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -95px;
    height: 190px;
    background: var(--pvc-surface);
    border-radius: 50% 50% 0 0 / 35% 35% 0 0;
}

.pdf-version-hero .pdf-version-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pdf-version-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border: 1px solid #d8e0ee;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: #536075;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.pdf-version-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pvc-primary);
    box-shadow: 0 0 0 5px rgba(49, 91, 234, .10);
}

.pdf-version-hero h1 {
    max-width: 850px;
    margin: 24px auto 0;
    font-size: clamp(46px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 850;
}

.pdf-version-hero h1 span {
    display: block;
    color: var(--pvc-primary);
}

.pdf-version-intro {
    max-width: 650px;
    margin: 25px auto 0;
    color: var(--pvc-muted);
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   TOOL SECTION
   ========================================================= */

.pdf-version-tool-section {
    position: relative;
    z-index: 5;
    margin-top: -85px;
    padding-bottom: 105px;
}

.pdf-version-tool {
    max-width: 920px;
    margin: 0 auto;
    padding: 14px;
    border: 1px solid rgba(216, 224, 238, .95);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--pvc-shadow);
}


/* =========================================================
   UPLOAD
   ========================================================= */

.pdf-version-upload {
    position: relative;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    border: 2px dashed #cbd5e4;
    border-radius: 20px;
    background:
        linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.9)),
        repeating-linear-gradient(
            45deg,
            #f8faff,
            #f8faff 10px,
            #f4f7fc 10px,
            #f4f7fc 20px
        );
    cursor: pointer;
    transition:
        border-color .25s ease,
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.pdf-version-upload:hover,
.pdf-version-upload:focus-visible {
    border-color: var(--pvc-primary);
    background: var(--pvc-primary-soft);
    outline: none;
}

.pdf-version-upload.is-dragging {
    border-color: var(--pvc-primary);
    background: #edf2ff;
    transform: scale(.995);
    box-shadow: inset 0 0 0 1px rgba(49, 91, 234, .12);
}


/* =========================================================
   DOCUMENT ICON
   ========================================================= */

.pdf-version-upload-visual {
    margin-bottom: 25px;
}

.pdf-version-document-icon {
    position: relative;
    width: 78px;
    height: 96px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 19px;
    border: 1px solid #cdd7e6;
    border-radius: 9px;
    background: #fff;
    box-shadow:
        0 14px 30px rgba(44, 62, 91, .12),
        8px 8px 0 #e8edf5;
    color: var(--pvc-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

.pdf-version-document-fold {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 27px;
    height: 27px;
    background: #edf2f8;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    border-left: 1px solid #cdd7e6;
    border-bottom: 1px solid #cdd7e6;
}

.pdf-version-document-icon::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 48px;
    width: 42px;
    height: 2px;
    background: #e0e6ef;
    box-shadow:
        0 7px 0 #e0e6ef,
        0 14px 0 #e0e6ef;
}


/* =========================================================
   UPLOAD CONTENT
   ========================================================= */

.pdf-version-upload-content {
    text-align: center;
}

.pdf-version-upload-content h2 {
    margin: 0;
    font-size: 25px;
    letter-spacing: -.025em;
}

.pdf-version-upload-content p {
    margin: 8px 0 0;
    color: var(--pvc-muted);
    font-size: 15px;
}

.pdf-version-upload-note {
    display: block;
    margin-top: 13px;
    color: #8a94a5;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   BROWSE BUTTON
   ========================================================= */

.pdf-version-browse {
    position: relative;
    z-index: 3;
    margin-top: 25px;
    padding: 13px 23px;
    border: 0;
    border-radius: 10px;
    background: var(--pvc-ink);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.pdf-version-browse:hover {
    background: var(--pvc-primary);
    transform: translateY(-2px);
}


/* =========================================================
   FILE INFORMATION
   ========================================================= */

.pdf-version-file {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 14px 0 0;
    padding: 16px 18px;
    border: 1px solid var(--pvc-line);
    border-radius: 14px;
    background: #f9fbfe;
}

.pdf-version-file-icon {
    flex: 0 0 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--pvc-primary-soft);
    color: var(--pvc-primary);
    font-size: 11px;
    font-weight: 900;
}

.pdf-version-file-details {
    min-width: 0;
    flex: 1;
}

.pdf-version-file-details strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.pdf-version-file-details span {
    display: block;
    margin-top: 4px;
    color: var(--pvc-muted);
    font-size: 12px;
}

.pdf-version-remove {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 0;
    border-radius: 9px;
    background: #edf1f6;
    color: #667084;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.pdf-version-remove:hover {
    background: #feecec;
    color: var(--pvc-danger);
}


/* =========================================================
   ACTION
   ========================================================= */

.pdf-version-action {
    padding: 14px 0 0;
}

.pdf-version-check-button {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 13px;
    background: var(--pvc-primary);
    color: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background .2s ease,
        transform .2s ease,
        opacity .2s ease;
}

.pdf-version-check-button:not(:disabled):hover {
    background: var(--pvc-primary-dark);
    transform: translateY(-2px);
}

.pdf-version-check-button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.pdf-version-button-arrow {
    font-size: 21px;
    line-height: 1;
}


/* =========================================================
   SPINNER
   ========================================================= */

.pdf-version-spinner {
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: pvcSpin .7s linear infinite;
}

@keyframes pvcSpin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   STATUS
   ========================================================= */

.pdf-version-status {
    margin-top: 13px;
    padding: 13px 16px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 650;
    text-align: center;
}

.pdf-version-status-success {
    background: #eaf8f2;
    color: var(--pvc-success);
    border: 1px solid #c8ebdc;
}

.pdf-version-status-error {
    background: #fff0f0;
    color: var(--pvc-danger);
    border: 1px solid #f3d0d0;
}


/* =========================================================
   RESULT
   ========================================================= */

.pdf-version-result {
    margin-top: 14px;
    padding: 30px;
    border-radius: 19px;
    background: #172033;
    color: #fff;
    overflow: hidden;
}

.pdf-version-result-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.pdf-version-result-label {
    display: block;
    color: #9ca9bd;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.pdf-version-number {
    margin-top: 5px;
    color: #fff;
    font-size: clamp(60px, 9vw, 92px);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 850;
}

.pdf-version-result-check {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(31, 180, 119, .15);
    border: 1px solid rgba(31, 180, 119, .35);
    color: #52d99f;
    font-size: 22px;
    font-weight: 800;
}

.pdf-version-specification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.pdf-version-specification span {
    color: #9ca9bd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .10em;
}

.pdf-version-specification strong {
    font-size: 17px;
}

.pdf-version-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 13px;
    background: rgba(255,255,255,.09);
}

.pdf-version-detail {
    min-width: 0;
    padding: 17px;
    background: #1c2639;
}

.pdf-version-detail-label {
    display: block;
    margin-bottom: 6px;
    color: #8996aa;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.pdf-version-detail strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}

.pdf-version-status-good {
    color: #52d99f;
}

.pdf-version-result-actions {
    margin-top: 22px;
}

.pdf-version-new-button {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}

.pdf-version-new-button:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.25);
}


/* =========================================================
   SECTION LABELS
   ========================================================= */

.pdf-version-section-label {
    display: inline-block;
    color: var(--pvc-primary);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
}


/* =========================================================
   INFORMATION SECTION
   ========================================================= */

.pdf-version-information {
    padding: 110px 0;
    background: #fff;
}

.pdf-version-info-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.pdf-version-info-heading h2,
.pdf-version-supported-heading h2,
.pdf-version-how-heading h2,
.pdf-version-faq-intro h2 {
    margin: 13px 0 18px;
    font-size: clamp(35px, 4vw, 53px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.pdf-version-info-heading p,
.pdf-version-supported-heading p,
.pdf-version-faq-intro p {
    color: var(--pvc-muted);
    font-size: 15px;
    line-height: 1.75;
}

.pdf-version-info-cards {
    display: grid;
    gap: 14px;
}

.pdf-version-info-card {
    position: relative;
    padding: 27px 28px 28px 76px;
    border: 1px solid var(--pvc-line);
    border-radius: 17px;
    background: #fbfcfe;
    transition: transform .2s ease, box-shadow .2s ease;
}

.pdf-version-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 35px rgba(30, 49, 82, .07);
}

.pdf-version-card-number {
    position: absolute;
    left: 26px;
    top: 29px;
    color: var(--pvc-primary);
    font-size: 11px;
    font-weight: 850;
}

.pdf-version-info-card h3 {
    margin: 0 0 7px;
    font-size: 17px;
}

.pdf-version-info-card p {
    margin: 0;
    color: var(--pvc-muted);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   SUPPORTED VERSIONS
   ========================================================= */

.pdf-version-supported {
    padding: 110px 0;
    background: #f3f6fb;
}

.pdf-version-supported-heading {
    max-width: 650px;
    margin-bottom: 38px;
}

.pdf-version-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--pvc-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(30, 49, 82, .05);
}

.pdf-version-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.pdf-version-table th {
    padding: 17px 21px;
    background: #f7f9fc;
    color: #6b7688;
    text-align: left;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .10em;
}

.pdf-version-table td {
    padding: 17px 21px;
    border-top: 1px solid #edf0f5;
    color: #4d596d;
    font-size: 13px;
}

.pdf-version-table td:first-child {
    color: var(--pvc-primary);
    font-weight: 850;
}

.pdf-version-table td:last-child {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    color: #778196;
    font-size: 12px;
}

.pdf-version-table tbody tr:hover td {
    background: #fafcff;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.pdf-version-how {
    padding: 110px 0;
    background: #fff;
}

.pdf-version-how-heading {
    max-width: 650px;
}

.pdf-version-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 45px;
}

.pdf-version-step {
    position: relative;
    min-height: 260px;
    padding: 29px;
    border: 1px solid var(--pvc-line);
    border-radius: 18px;
    background: #fff;
}

.pdf-version-step-number {
    color: #a2adbd;
    font-size: 11px;
    font-weight: 850;
}

.pdf-version-step-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin: 35px 0 22px;
    border-radius: 12px;
    background: var(--pvc-primary-soft);
    color: var(--pvc-primary);
    font-size: 21px;
    font-weight: 800;
}

.pdf-version-step h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

.pdf-version-step p {
    margin: 0;
    color: var(--pvc-muted);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   FAQ
   ========================================================= */

.pdf-version-faq {
    padding: 110px 0;
    background: #f3f6fb;
}

.pdf-version-faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;
    align-items: start;
}

.pdf-version-faq-list {
    min-width: 0;
    border-top: 1px solid var(--pvc-line);
}

.pdf-version-faq-list details {
    position: relative;
    min-width: 0;
    border-bottom: 1px solid var(--pvc-line);
}


/* =========================================================
   FAQ SUMMARY
   ========================================================= */

.pdf-version-faq-list summary {
    position: relative;
    min-width: 0;
    display: block;
    padding: 22px 48px 22px 0;
    list-style: none;
    color: var(--pvc-ink);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.5;
    cursor: pointer;
    overflow: visible;
}

.pdf-version-faq-list summary::-webkit-details-marker {
    display: none;
}


/* =========================================================
   FAQ CATEGORY LABEL
   ---------------------------------------------------------
   Supports category spans commonly used inside summary.
   This prevents labels from sitting on top of the question.
   ========================================================= */

.pdf-version-faq-list summary > span:first-child {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 9px;
    padding: 5px 9px;
    border-radius: 6px;
    background: var(--pvc-primary-soft);
    color: var(--pvc-primary);
    font-size: 9px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: .11em;
    text-transform: uppercase;
    vertical-align: top;
}


/* If the label has a dedicated FAQ class */

.pdf-version-faq-label,
.pdf-version-faq-category,
.faq-label,
.faq-category {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 9px;
    padding: 5px 9px;
    border-radius: 6px;
    background: var(--pvc-primary-soft);
    color: var(--pvc-primary);
    font-size: 9px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: .11em;
    text-transform: uppercase;
}


/* =========================================================
   FAQ QUESTION TEXT
   ========================================================= */

.pdf-version-faq-list summary > strong,
.pdf-version-faq-list summary > b {
    display: block;
    margin-right: 20px;
    color: var(--pvc-ink);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.5;
}


/* Support a question span following the category label */

.pdf-version-faq-list summary > span + span {
    display: block;
    margin-right: 20px;
    color: var(--pvc-ink);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.5;
}


/* =========================================================
   FAQ PLUS ICON
   ========================================================= */

.pdf-version-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--pvc-primary);
    background: rgba(49, 91, 234, .07);
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
    transition:
        transform .2s ease,
        background .2s ease;
}

.pdf-version-faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    background: rgba(49, 91, 234, .12);
}


/* =========================================================
   FAQ ANSWER
   ========================================================= */

.pdf-version-faq-list details p {
    max-width: 700px;
    margin: -2px 48px 22px 0;
    color: var(--pvc-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   FAQ HOVER
   ========================================================= */

.pdf-version-faq-list summary:hover {
    color: var(--pvc-primary-dark);
}

.pdf-version-faq-list summary:hover::after {
    background: rgba(49, 91, 234, .12);
}


/* =========================================================
   FAQ: IF QUESTION IS DIRECT TEXT AFTER LABEL
   ========================================================= */

.pdf-version-faq-list summary > span:first-child + text {
    display: block;
}


/* =========================================================
   CTA
   ========================================================= */

.pdf-version-cta {
    padding: 0 0 100px;
    background: #f3f6fb;
}

.pdf-version-cta-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 52px;
    overflow: hidden;
    border-radius: 23px;
    background: var(--pvc-primary);
    color: #fff;
}

.pdf-version-cta-box::before,
.pdf-version-cta-box::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
}

.pdf-version-cta-box::before {
    width: 300px;
    height: 300px;
    right: -90px;
    top: -180px;
}

.pdf-version-cta-box::after {
    width: 200px;
    height: 200px;
    right: 100px;
    bottom: -160px;
}

.pdf-version-cta-box > div,
.pdf-version-cta-button {
    position: relative;
    z-index: 2;
}

.pdf-version-cta-box > div > span {
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .15em;
    opacity: .72;
}

.pdf-version-cta-box h2 {
    margin: 10px 0 7px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -.045em;
}

.pdf-version-cta-box p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 14px;
}

.pdf-version-cta-button {
    flex: 0 0 auto;
    min-height: 52px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 0;
    border-radius: 11px;
    background: #fff;
    color: var(--pvc-primary);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease;
}

.pdf-version-cta-button:hover {
    transform: translateY(-3px);
}

.pdf-version-cta-button span {
    font-size: 19px;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.pdf-version-page button:focus-visible,
.pdf-version-page a:focus-visible,
.pdf-version-page summary:focus-visible {
    outline: 3px solid rgba(49, 91, 234, .30);
    outline-offset: 3px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .pdf-version-info-grid,
    .pdf-version-faq-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .pdf-version-steps {
        grid-template-columns: 1fr;
    }

    .pdf-version-step {
        min-height: auto;
    }

    .pdf-version-step-icon {
        margin-top: 25px;
    }

    .pdf-version-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

    /* FAQ tablet */

    .pdf-version-faq-list summary {
        padding-right: 50px;
    }

    .pdf-version-faq-list details p {
        margin-right: 50px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .pdf-version-container {
        width: min(100% - 28px, 1180px);
    }

    .pdf-version-hero {
        padding: 65px 0 130px;
    }

    .pdf-version-hero h1 {
        font-size: clamp(42px, 13vw, 62px);
    }

    .pdf-version-intro {
        font-size: 16px;
    }

    .pdf-version-tool-section {
        margin-top: -70px;
        padding-bottom: 75px;
    }

    .pdf-version-tool {
        padding: 8px;
        border-radius: 21px;
    }

    .pdf-version-upload {
        min-height: 330px;
        padding: 35px 20px;
        border-radius: 16px;
    }

    .pdf-version-upload-content h2 {
        font-size: 22px;
    }

    .pdf-version-result {
        padding: 22px;
        border-radius: 15px;
    }

    .pdf-version-details-grid {
        grid-template-columns: 1fr;
    }

    .pdf-version-information,
    .pdf-version-supported,
    .pdf-version-how,
    .pdf-version-faq {
        padding: 75px 0;
    }

    .pdf-version-info-card {
        padding: 23px 20px 23px 62px;
    }

    .pdf-version-card-number {
        left: 20px;
        top: 25px;
    }

    .pdf-version-cta {
        padding-bottom: 65px;
    }

    .pdf-version-cta-box {
        padding: 35px 25px;
        border-radius: 18px;
    }

    .pdf-version-cta-button {
        width: 100%;
        justify-content: center;
    }

    .pdf-version-specification {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }


    /* =====================================================
       MOBILE FAQ
       ===================================================== */

    .pdf-version-faq-list summary {
        padding: 18px 43px 18px 0;
        font-size: 14px;
        line-height: 1.5;
    }

    .pdf-version-faq-list summary > span:first-child,
    .pdf-version-faq-label,
    .pdf-version-faq-category,
    .faq-label,
    .faq-category {
        margin-bottom: 8px;
        font-size: 8px;
        padding: 5px 8px;
    }

    .pdf-version-faq-list summary > strong,
    .pdf-version-faq-list summary > b,
    .pdf-version-faq-list summary > span + span {
        margin-right: 15px;
        font-size: 14px;
        line-height: 1.5;
    }

    .pdf-version-faq-list summary::after {
        right: 0;
        width: 26px;
        height: 26px;
        font-size: 20px;
    }

    .pdf-version-faq-list details p {
        margin: 0 43px 20px 0;
        font-size: 12px;
        line-height: 1.7;
    }
}


/* =========================================================
   EXTRA SMALL DEVICES
   ========================================================= */

@media (max-width: 420px) {

    .pdf-version-hero {
        padding-top: 55px;
    }

    .pdf-version-hero h1 {
        font-size: 40px;
    }

    .pdf-version-intro {
        font-size: 15px;
    }

    .pdf-version-upload {
        min-height: 310px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .pdf-version-document-icon {
        width: 70px;
        height: 88px;
    }

    .pdf-version-upload-content h2 {
        font-size: 20px;
    }

    .pdf-version-upload-content p {
        font-size: 14px;
    }

    .pdf-version-result {
        padding: 18px;
    }

    .pdf-version-number {
        font-size: 58px;
    }

    .pdf-version-cta-box {
        padding: 30px 20px;
    }

    .pdf-version-cta-box h2 {
        font-size: 31px;
    }

    .pdf-version-faq-list summary {
        padding-right: 38px;
    }

    .pdf-version-faq-list details p {
        margin-right: 38px;
    }
}
/* =========================================================
   FIX: PDF VERSION INFO CARD LABEL OVERLAP
   ========================================================= */

.pdf-version-info-card {
    position: relative;
}

.pdf-version-info-card .pdf-version-card-number {
    position: static !important;
    display: block !important;
    width: fit-content;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    transform: none !important;
    float: none !important;
    line-height: 1.2 !important;
}

.pdf-version-info-card h3 {
    position: static !important;
    margin: 0 0 10px 0 !important;
    transform: none !important;
}