/* ════════════════════════════════════
   OUTER CARD
════════════════════════════════════ */
.qv-card {
    width: 100%;
    max-width: 740px;
    background: #ffffff;
    border: 2px solid #e0f5f5;
    border-radius: 22px;
    padding: 28px 26px 24px;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, .04),
        0 10px 36px rgba(0, 0, 0, .08);
    /* entry */
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.34, 1.3, .64, 1);
}

.qv-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════
   TOP ROW — icon + title
════════════════════════════════════ */
.qv-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

/* Gradient circle icon */
.qv-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #31adad 0%, #ff2d8d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(49, 173, 173, .28);
    animation: qv-float 3.5s ease-in-out infinite;
}

@keyframes qv-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.qv-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -.3px;
}

/* ════════════════════════════════════
   BEST / NOT GREAT ROW
════════════════════════════════════ */
.qv-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 22px;
}

/* Box base */
.qv-box {
    border-radius: 12px;
    padding: 14px 16px;
}

/* Best for — green tint */
.qv-box-green {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

/* Not great — orange tint */
.qv-box-orange {
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

/* Box label */
.qv-box-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 10px;
}

.qv-box-green .qv-box-label {
    color: #16a34a;
}

.qv-box-orange .qv-box-label {
    color: #ea580c;
}

/* Label icon */
.qv-box-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qv-box-green .qv-box-icon {
    border: 2px solid #16a34a;
}

.qv-box-orange .qv-box-icon {
    border: 2px solid #ea580c;
}

.qv-box-green .qv-box-icon svg {
    stroke: #16a34a;
}

.qv-box-orange .qv-box-icon svg {
    stroke: #ea580c;
}

.qv-box-icon svg {
    width: 11px;
    height: 11px;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Box list */
.qv-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.qv-box-list li {
    font-size: 12.5px;
    color: #374151;
    font-weight: 400;
    line-height: 1.55;
    padding-left: 12px;
    position: relative;
}

.qv-box-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9ca3af;
}

/* ════════════════════════════════════
   PERFORMANCE SCORES
════════════════════════════════════ */
.qv-scores-wrap {
    background: #f9fafb;
    border: 1px solid #f0f0f8;
    border-radius: 14px;
    padding: 18px 18px 16px;
    margin-bottom: 18px;
}

.qv-scores-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

/* 2-col grid for scores */
.qv-scores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}

/* Single score item */
.qv-score-item {}

.qv-score-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.qv-score-label {
    font-size: 12.5px;
    font-weight: 500;
    color: #374151;
}

.qv-score-val {
    font-size: 13px;
    font-weight: 800;
    color: #111827;
}

/* Track */
.qv-track {
    height: 7px;
    border-radius: 50px;
    background: #e5e7eb;
    overflow: hidden;
}

/* Fill bar */
.qv-fill {
    height: 100%;
    border-radius: 50px;
    width: 0%;
    transition: width .9s cubic-bezier(.4, 0, .2, 1);
}

/* Gradient fills */
.qv-fill-1 {
    background: linear-gradient(90deg, #31adad, #ff2d8d);
}

.qv-fill-2 {
    background: linear-gradient(90deg, #31adad, #8b5cf6);
}

.qv-fill-3 {
    background: linear-gradient(90deg, #ff2d8d, #8b5cf6);
}

.qv-fill-4 {
    background: linear-gradient(90deg, #31adad, #ff2d8d);
}

/* ════════════════════════════════════
   BOTTOM LINE BOX
════════════════════════════════════ */
.qv-bottomline {
    background: #f8f9ff;
    border: 1px solid #e8eaf8;
    border-left: 4px solid #31adad;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 22px;
    font-size: 13px;
    color: #374151;
    line-height: 1.75;
    font-weight: 400;
}

.qv-bottomline strong {
    font-weight: 700;
    color: #111827;
}

/* ════════════════════════════════════
   CTA BUTTONS
════════════════════════════════════ */
.qv-btn-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Solid gradient button */
.qv-btn-solid {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #31adad 0%, #ff2d8d 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(49, 173, 173, .28);
    transition: transform .22s, box-shadow .22s;
    position: relative;
    overflow: hidden;
}

.qv-btn-solid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .25) 50%, transparent 70%);
    transform: translateX(-130%);
}

.qv-btn-solid:hover::before {
    animation: qv-shine .4s ease forwards;
}

@keyframes qv-shine {
    from {
        transform: translateX(-130%);
    }

    to {
        transform: translateX(160%);
    }
}

.qv-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(49, 173, 173, .42);
    color: #fff;
}

/* Outline button */
.qv-btn-outline {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 50px;
    background: transparent;
    color: #31adad;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #31adad;
    cursor: pointer;
    transition: all .22s;
}

.qv-btn-outline:hover {
    background: #31adad;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 173, 173, .30);
}

.qv-btn-icon {
    font-size: 15px;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 540px) {
    .qv-boxes {
        grid-template-columns: 1fr;
    }

    .qv-scores-grid {
        grid-template-columns: 1fr;
    }

    .qv-btn-row {
        flex-direction: column;
    }

    .qv-btn-solid,
    .qv-btn-outline {
        width: 100%;
        min-width: unset;
    }
}


/* ════════════════════════════════════
   WRAPPER
════════════════════════════════════ */
.hit-wrap {
    width: 100%;
    /* max-width: 760px; */
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ════════════════════════════════════
   WARNING BOXES
════════════════════════════════════ */
.hit-warnings {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.hit-warn {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 10px;
    padding: 13px 16px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 13px;
    color: #374151;
    line-height: 1.65;
}

.hit-warn-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.hit-warn strong {
    font-weight: 700;
    color: #111827;
}

/* ════════════════════════════════════
   SECTION HEADING
════════════════════════════════════ */
.hit-heading {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 800;
    color: #111827;
    letter-spacing: -.4px;
    margin-bottom: 18px;
}

/* ════════════════════════════════════
   MAIN CARD
════════════════════════════════════ */
.hit-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 6px 22px rgba(0, 0, 0, .07);
}

/* Intro text */
.hit-intro {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 24px;
    font-weight: 400;
}

/* ── 4 ICON CARDS GRID ── */
.hit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    margin-bottom: 22px;
}

.hit-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hit-item-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

/* Teal icon badge */
.hit-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #e6fafa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.hit-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.hit-item-desc {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.65;
    font-weight: 400;
    padding-left: 50px;
    /* align under title */
}

/* ── WHAT I SPECIFICALLY TESTED ── */
.hit-tested-box {
    background: #f9fafb;
    border: 1px solid #f0f0f8;
    border-radius: 12px;
    padding: 18px 18px 16px;
    margin-bottom: 18px;
}

.hit-tested-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 13px;
}

.hit-tested-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}

.hit-tested-grid li {
    font-size: 12.5px;
    color: #374151;
    line-height: 1.6;
    font-weight: 400;
    padding-left: 14px;
    position: relative;
    list-style: none;
}

.hit-tested-grid li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #31adad;
    font-weight: 700;
}

/* ── LIMITATIONS BOX ── */
.hit-limitations {
    background: #f8f9ff;
    border: 1px solid #e8eaf8;
    border-left: 4px solid #31adad;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 13px;
    color: #374151;
    line-height: 1.75;
    font-weight: 400;
}

.hit-limitations strong {
    font-weight: 700;
    color: #111827;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 520px) {
    .hit-grid {
        grid-template-columns: 1fr;
    }

    .hit-tested-grid {
        grid-template-columns: 1fr;
    }

    .hit-item-desc {
        padding-left: 0;
        margin-top: 4px;
    }
}


/* ════════════════════════════════════
   WRAPPER
════════════════════════════════════ */
.snf-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── HEADING ── */
.snf-heading {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 800;
    color: #111827;
    letter-spacing: -.4px;
    margin-bottom: 4px;
}

/* ════════════════════════════════════
   SPECS TABLE CARD
════════════════════════════════════ */
.snf-table-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 4px 16px rgba(0, 0, 0, .06);
}

/* ── TABLE HEADER ROW ── */
.snf-thead {
    display: grid;
    grid-template-columns: 220px 1fr;
    background: linear-gradient(90deg, #e6fafa 0%, #fde8f3 100%);
    padding: 12px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.snf-th {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
}

/* ── TABLE ROWS ── */
.snf-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    padding: 14px 20px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
    transition: background .15s;
}

.snf-row:last-child {
    border-bottom: none;
}

.snf-row:hover {
    background: #f9fffe;
}

/* Feature cell */
.snf-feat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.snf-feat-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #e6fafa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.snf-feat-name {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

/* Detail cell */
.snf-detail {
    font-size: 13px;
    color: #374151;
    font-weight: 400;
    line-height: 1.5;
}

/* ════════════════════════════════════
   WHY IT STANDS OUT
════════════════════════════════════ */
.snf-standout {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 4px 16px rgba(0, 0, 0, .06);
}

.snf-standout-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.snf-standout-item {
    font-size: 13px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 10px;
    font-weight: 400;
}

.snf-standout-item:last-child {
    margin-bottom: 0;
}

.snf-standout-item strong {
    font-weight: 700;
    color: #111827;
}

/* ════════════════════════════════════
   DID YOU KNOW ACCORDION
════════════════════════════════════ */
.snf-accordion {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 4px 16px rgba(0, 0, 0, .06);
}

.snf-acc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    transition: background .15s;
}

.snf-acc-header:hover {
    background: #f9fffe;
}

.snf-acc-info-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #31adad;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #31adad;
    font-weight: 800;
    flex-shrink: 0;
}

.snf-acc-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    flex: 1;
}

.snf-acc-chevron {
    font-size: 12px;
    color: #31adad;
    font-weight: 700;
    transition: transform .3s ease;
}

.snf-accordion.open .snf-acc-chevron {
    transform: rotate(180deg);
}

/* Accordion body */
.snf-acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .32s ease;
}

.snf-accordion.open .snf-acc-body {
    grid-template-rows: 1fr;
}

.snf-acc-inner {
    overflow: hidden;
}

.snf-acc-content {
    padding: 0 20px 16px;
    font-size: 13px;
    color: #374151;
    line-height: 1.75;
    font-weight: 400;
    border-top: 1px solid #f3f4f6;
    padding-top: 14px;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 500px) {

    .snf-thead,
    .snf-row {
        grid-template-columns: 150px 1fr;
    }

    .snf-feat-name {
        font-size: 12px;
    }

    .snf-detail {
        font-size: 12px;
    }
}


/* ════════════════════════════════════
   WRAPPER
════════════════════════════════════ */
.bq-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ── HEADING ── */
.bq-heading {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 800;
    color: #111827;
    letter-spacing: -.4px;
    margin-bottom: 10px;
}

.bq-intro {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.75;
    font-weight: 400;
}

/* ════════════════════════════════════
   4 CARDS GRID
════════════════════════════════════ */
.bq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── CARD ── */
.bq-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 4px 16px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow .2s, transform .2s;
}

.bq-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .10);
    transform: translateY(-2px);
}

/* Card top row */
.bq-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bq-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #e6fafa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.bq-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

/* Quality badge */
.bq-badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
    width: fit-content;
}

.bq-badge-yellow {
    background: #fef9c3;
    color: #854d0e;
}

/* Card body text */
.bq-card-text {
    font-size: 13px;
    color: #374151;
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 10px;
}

.bq-card-text:last-child {
    margin-bottom: 0;
}

/* Note style */
.bq-note {
    color: #374151;
}

.bq-note strong {
    font-weight: 700;
    color: #111827;
}

/* Warranty list */
.bq-warranty-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.bq-warranty-list {
    list-style: disc;
    padding-left: 18px;
    margin-bottom: 12px;
}

.bq-warranty-list li {
    font-size: 13px;
    color: #374151;
    line-height: 1.65;
    font-weight: 400;
}

/* ════════════════════════════════════
   DEVIL'S ADVOCATE BOX
════════════════════════════════════ */
.bq-devil-wrap {
    border-left: 4px solid #ef4444;
    border-radius: 0 14px 14px 0;
    overflow: hidden;
}

.bq-devil-inner {
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-left: none;
    border-radius: 0 14px 14px 0;
    padding: 18px 20px;
}

.bq-devil-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.bq-devil-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #ef4444;
    flex-shrink: 0;
}

.bq-devil-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
}

.bq-devil-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.bq-devil-text {
    font-size: 13px;
    color: #374151;
    line-height: 1.78;
    font-weight: 400;
    margin-bottom: 10px;
}

.bq-devil-text:last-child {
    margin-bottom: 0;
}

/* ════════════════════════════════════
   ASSEMBLY EXPERIENCE
════════════════════════════════════ */
.bq-assembly {
    background: #f0f4ff;
    border: 1px solid #dbe4ff;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.bq-assembly-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.bq-assembly-row {
    font-size: 13px;
    color: #374151;
    line-height: 1.72;
    font-weight: 400;
    margin-bottom: 8px;
}

.bq-assembly-row:last-child {
    margin-bottom: 0;
}

.bq-assembly-row strong {
    font-weight: 700;
    color: #111827;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 560px) {
    .bq-grid {
        grid-template-columns: 1fr;
    }
}


/* ════════════════════════════════════
   WRAPPER
════════════════════════════════════ */
.syb-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── HEADING ── */
.syb-heading {
    font-size: clamp(20px, 3.2vw, 28px);
    font-weight: 800;
    color: #111827;
    letter-spacing: -.4px;
    margin-bottom: 8px;
}

.syb-intro {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
}

.syb-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.syb-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-height: 100%;
    border-radius: 16px;
    padding: 22px 20px;
}

/* Apply equal height for all cards */
.syb-card-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

/* ════════════════════════════════════
   2-COL GRID
════════════════════════════════════ */
/* .syb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
} */

/* ════════════════════════════════════
   CARD BASE
════════════════════════════════════ */
/* .syb-card {
    border-radius: 16px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
} */

.syb-card-buy {
    background: #d4f9df;
    border: 2px solid #009e37;
}

.syb-card-skip {
    background: #ffeaea;
    border: 2px solid #ff0000;
}

/* ── CARD HEADER ── */
.syb-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.syb-header-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.syb-card-buy .syb-header-icon {
    background: #16a34a;
}

.syb-card-skip .syb-header-icon {
    background: #ef4444;
}

.syb-card-label {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
}

/* ── ITEM LIST ── */
.syb-items {
    display: flex;
    flex-direction: column;
    padding-left: 2px;
}

.syb-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

/* Bullet dot */
.syb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.syb-card-buy .syb-dot {
    background: #16a34a;
}

.syb-card-skip .syb-dot {
    background: #ef4444;
}

.syb-item-text {
    font-size: 15px !important;
    color: #111827;
    line-height: 1.72;
    font-weight: 400;
    letter-spacing: unset !important;
}

.syb-item-text strong {
    font-weight: 700;
    color: #111827;
    font-size: 17px !important;
}

.syb-item-text u {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ════════════════════════════════════
   STILL UNSURE BOX
════════════════════════════════════ */
.syb-unsure {
    background: #f8f9fc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.syb-unsure-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
}

/* 2-col action items */
.syb-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.syb-action {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 13px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}

.syb-action:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .09);
    transform: translateY(-2px);
    border-color: #d1d5db;
}

.syb-action-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f0f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.syb-action-body {}

.syb-action-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}

.syb-action-sub {
    font-size: 11.5px;
    color: #9ca3af;
    font-weight: 400;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 580px) {
    .syb-grid {
        grid-template-columns: 1fr;
    }

    .syb-actions {
        grid-template-columns: 1fr;
    }
}


/* ════════════════════════════════════
   WRAPPER
════════════════════════════════════ */
.ba-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── HEADING ── */
.ba-heading {
    font-size: clamp(20px, 3.2vw, 27px);
    font-weight: 800;
    color: #111827;
    letter-spacing: -.4px;
    margin-bottom: 8px;
}

.ba-intro {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
}

/* ════════════════════════════════════
   ALTERNATIVE CARDS LIST
════════════════════════════════════ */
.ba-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── SINGLE ALT CARD ── */
.ba-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 4px 14px rgba(0, 0, 0, .06);
    transition: box-shadow .2s, transform .2s;
}

.ba-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .10);
    transform: translateY(-2px);
}

/* Card top row */
.ba-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.ba-card-name {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -.2px;
}

/* See Review button */
.ba-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, #31adad 0%, #ff2d8d 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(49, 173, 173, .22);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.ba-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .25) 50%, transparent 70%);
    transform: translateX(-130%);
}

.ba-btn:hover::before {
    animation: ba-shine .38s ease forwards;
}

@keyframes ba-shine {
    from {
        transform: translateX(-130%);
    }

    to {
        transform: translateX(160%);
    }
}

.ba-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(49, 173, 173, .38);
    color: #fff;
}

.ba-btn-arrow {
    font-size: 13px;
}

/* Price tag */
.ba-price-tag {
    display: inline-block;
    background: #fde8f3;
    color: #e0186f;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 11px;
    border-radius: 50px;
    margin-bottom: 12px;
}

/* Divider */
.ba-card-divider {
    height: 1px;
    background: #f3f4f6;
    margin-bottom: 11px;
}

/* Meta rows */
.ba-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ba-meta-row {
    font-size: 12.5px;
    color: #374151;
    line-height: 1.6;
    font-weight: 400;
}

.ba-meta-row strong {
    font-weight: 700;
    color: #111827;
}

/* ════════════════════════════════════
   COMPARISON TABLE
════════════════════════════════════ */
.ba-table-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 4px 14px rgba(0, 0, 0, .06);
}

/* Header row */
.ba-table-head {
    display: grid;
    grid-template-columns: 160px 1fr 1fr 1fr;
    background: linear-gradient(90deg, #e6fafa 0%, #fde8f3 100%);
    border-bottom: 1px solid #e5e7eb;
}

.ba-th {
    padding: 12px 16px;
    font-size: 12.5px;
    font-weight: 700;
    color: #374151;
}

.ba-th:first-child {
    color: #374151;
}

.ba-th:nth-child(2) {
    color: #31adad;
}

.ba-th:nth-child(3) {
    color: #6b7280;
}

.ba-th:nth-child(4) {
    color: #6b7280;
}

/* Table rows */
.ba-table-row {
    display: grid;
    grid-template-columns: 160px 1fr 1fr 1fr;
    border-bottom: 1px solid #f3f4f6;
    transition: background .15s;
}

.ba-table-row:last-child {
    border-bottom: none;
}

.ba-table-row:hover {
    background: #f9fffe;
}

.ba-td {
    padding: 13px 16px;
    font-size: 12.5px;
    color: #374151;
    font-weight: 400;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.ba-td-feat {
    font-weight: 600;
    color: #111827;
    font-size: 12.5px;
}

/* Check / Cross */
.ba-chk {
    color: #16a34a;
    font-size: 15px;
    font-weight: 700;
}

.ba-crs {
    color: #ef4444;
    font-size: 15px;
    font-weight: 700;
}

/* ════════════════════════════════════
   3 BOTTOM LINK CARDS
════════════════════════════════════ */
.ba-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ba-link-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.ba-link-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, .09);
    transform: translateY(-2px);
    border-color: #d1fae5;
}

.ba-link-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.ba-link-card-sub {
    font-size: 11.5px;
    color: #9ca3af;
    font-weight: 400;
}

.ba-link-card-icon {
    font-size: 17px;
    color: #31adad;
    margin-top: 2px;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 580px) {

    .ba-table-head,
    .ba-table-row {
        grid-template-columns: 110px 1fr 1fr 1fr;
    }

    .ba-th,
    .ba-td {
        padding: 10px 10px;
        font-size: 11px;
    }

    .ba-bottom-grid {
        grid-template-columns: 1fr;
    }

    .ba-card-top {
        flex-wrap: wrap;
    }
}


/* ════════════════════════════════════
   WRAPPER
════════════════════════════════════ */
.ba-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── HEADING ── */
.ba-heading {
    font-size: clamp(20px, 3.2vw, 27px);
    font-weight: 800;
    color: #111827;
    letter-spacing: -.4px;
    margin-bottom: 8px;
}

.ba-intro {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
}

/* ════════════════════════════════════
   ALTERNATIVE CARDS LIST
════════════════════════════════════ */
.ba-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── SINGLE ALT CARD ── */
.ba-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 4px 14px rgba(0, 0, 0, .06);
    transition: box-shadow .2s, transform .2s;
}

.ba-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .10);
    transform: translateY(-2px);
}

/* Card top row */
.ba-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.ba-card-name {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -.2px;
}

/* See Review button */
.ba-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, #31adad 0%, #ff2d8d 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(49, 173, 173, .22);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.ba-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .25) 50%, transparent 70%);
    transform: translateX(-130%);
}

.ba-btn:hover::before {
    animation: ba-shine .38s ease forwards;
}

@keyframes ba-shine {
    from {
        transform: translateX(-130%);
    }

    to {
        transform: translateX(160%);
    }
}

.ba-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(49, 173, 173, .38);
    color: #fff;
}

.ba-btn-arrow {
    font-size: 13px;
}

/* Price tag */
.ba-price-tag {
    display: inline-block;
    background: #fde8f3;
    color: #e0186f;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 11px;
    border-radius: 50px;
    margin-bottom: 12px;
}

/* Divider */
.ba-card-divider {
    height: 1px;
    background: #f3f4f6;
    margin-bottom: 11px;
}

/* Meta rows */
.ba-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ba-meta-row {
    font-size: 12.5px;
    color: #374151;
    line-height: 1.6;
    font-weight: 400;
}

.ba-meta-row strong {
    font-weight: 700;
    color: #111827;
}

/* ════════════════════════════════════
   COMPARISON TABLE
════════════════════════════════════ */
.ba-table-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 4px 14px rgba(0, 0, 0, .06);
}

/* Header row */
.ba-table-head {
    display: grid;
    grid-template-columns: 160px 1fr 1fr 1fr;
    background: linear-gradient(90deg, #e6fafa 0%, #fde8f3 100%);
    border-bottom: 1px solid #e5e7eb;
}

.ba-th {
    padding: 12px 16px;
    font-size: 12.5px;
    font-weight: 700;
    color: #374151;
}

.ba-th:first-child {
    color: #374151;
}

.ba-th:nth-child(2) {
    color: #31adad;
}

.ba-th:nth-child(3) {
    color: #6b7280;
}

.ba-th:nth-child(4) {
    color: #6b7280;
}

/* Table rows */
.ba-table-row {
    display: grid;
    grid-template-columns: 160px 1fr 1fr 1fr;
    border-bottom: 1px solid #f3f4f6;
    transition: background .15s;
}

.ba-table-row:last-child {
    border-bottom: none;
}

.ba-table-row:hover {
    background: #f9fffe;
}

.ba-td {
    padding: 13px 16px;
    font-size: 12.5px;
    color: #374151;
    font-weight: 400;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.ba-td-feat {
    font-weight: 600;
    color: #111827;
    font-size: 12.5px;
}

/* Check / Cross */
.ba-chk {
    color: #16a34a;
    font-size: 15px;
    font-weight: 700;
}

.ba-crs {
    color: #ef4444;
    font-size: 15px;
    font-weight: 700;
}

/* ════════════════════════════════════
   3 BOTTOM LINK CARDS
════════════════════════════════════ */
.ba-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ba-link-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.ba-link-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, .09);
    transform: translateY(-2px);
    border-color: #d1fae5;
}

.ba-link-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.ba-link-card-sub {
    font-size: 11.5px;
    color: #9ca3af;
    font-weight: 400;
}

.ba-link-card-icon {
    font-size: 17px;
    color: #31adad;
    margin-top: 2px;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 580px) {

    .ba-table-head,
    .ba-table-row {
        grid-template-columns: 110px 1fr 1fr 1fr;
    }

    .ba-th,
    .ba-td {
        padding: 10px 10px;
        font-size: 11px;
    }

    .ba-bottom-grid {
        grid-template-columns: 1fr;
    }

    .ba-card-top {
        flex-wrap: wrap;
    }
}


.qov-wrap {
    width: 100%;
    /* max-width: 760px; */
    opacity: 0;
    transform: translateY(22px);
    animation: qov-up .65s .1s cubic-bezier(.34, 1.28, .64, 1) forwards;
}

@keyframes qov-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── HEADING ── */
.qov-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 900;
    color: #111827;
    letter-spacing: -.4px;
    line-height: 1.15;
    margin-bottom: 18px;
}

/* ════════════════════════════════════
   OUTER CARD
════════════════════════════════════ */
.qov-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04), 0 8px 28px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ════════════════════════════════════
   4 STATS ROW
════════════════════════════════════ */
.qov-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f9fafb;
    border: 1px solid #f0f0f8;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 22px;
    gap: 0;
}

.qov-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
}

.qov-stat:first-child {
    padding-left: 0;
}

.qov-stat:last-child {
    padding-right: 0;
}

.qov-stat+.qov-stat {
    border-left: 1px solid #e5e7eb;
}

.qov-stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #e6fafa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qov-stat-icon svg {
    width: 16px;
    height: 16px;
    stroke: #31adad;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.qov-stat-label {
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
    margin-bottom: 2px;
}

.qov-stat-val {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -.2px;
}

/* ════════════════════════════════════
   SECTION DIVIDER
════════════════════════════════════ */
.qov-sep {
    height: 1px;
    background: #f3f4f6;
    margin: 0 -2px 20px;
}

/* ════════════════════════════════════
   KEY HIGHLIGHTS
════════════════════════════════════ */
.qov-hl-title {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

.qov-hl-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 20px;
}

.qov-hl-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #374151;
    font-weight: 400;
    line-height: 1.55;
}

.qov-hl-tick {
    font-size: 13px;
    font-weight: 700;
    color: #31adad;
    flex-shrink: 0;
    margin-top: 1px;
    width: 14px;
}

/* ════════════════════════════════════
   PERFECT / AVOID GRID
════════════════════════════════════ */
.qov-pa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.qov-pa-box {
    border-radius: 10px;
    padding: 14px 16px;
}

.qov-pa-green {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.qov-pa-red {
    background: #fff5f5;
    border: 1px solid #fecaca;
}

.qov-pa-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.qov-pa-green .qov-pa-title {
    color: #15803d;
}

.qov-pa-red .qov-pa-title {
    color: #b91c1c;
}

.qov-pa-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.qov-pa-list li {
    font-size: 12.5px;
    color: #374151;
    font-weight: 400;
    line-height: 1.55;
    padding-left: 12px;
    position: relative;
}

.qov-pa-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9ca3af;
}

/* ════════════════════════════════════
   BRAND CONTEXT
════════════════════════════════════ */
.qov-brand {
    background: #f0f4ff;
    border: 1px solid #dbeafe;
    border-left: 4px solid #31adad;
    border-radius: 0 10px 10px 0;
    padding: 13px 16px;
    font-size: 13px;
    color: #374151;
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 20px;
}

.qov-brand strong {
    font-weight: 700;
    color: #111827;
}

/* ════════════════════════════════════
   CTA
════════════════════════════════════ */
.qov-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 50px;
    background: linear-gradient(135deg, #31adad 0%, #ff2d8d 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(49, 173, 173, .30);
    transition: transform .22s, box-shadow .22s;
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.qov-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .24) 50%, transparent 70%);
    transform: translateX(-130%);
}

.qov-cta:hover::before {
    animation: qov-shine .42s ease forwards;
}

@keyframes qov-shine {
    from {
        transform: translateX(-130%);
    }

    to {
        transform: translateX(160%);
    }
}

.qov-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(49, 173, 173, .42);
    color: #fff;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 560px) {
    .qov-stats {
        grid-template-columns: 1fr 1fr;
    }

    .qov-stat {
        padding: 8px 0;
        border-left: none !important;
    }

    .qov-stat:nth-child(odd) {
        border-right: 1px solid #e5e7eb;
        padding-right: 12px;
    }

    .qov-pa-grid {
        grid-template-columns: 1fr;
    }
}


/* ════════════════════════════════════
   WRAPPER
════════════════════════════════════ */
.cls-wrap {
    width: 100%;
    /* max-width: 780px; */
}

/* ── HEADING ── */
.cls-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    color: #111827;
    letter-spacing: -.5px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.cls-intro {
    font-size: 14px;
    color: #374151;
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 36px;
}

/* ════════════════════════════════════
   VERTICAL TIMELINE
════════════════════════════════════ */
.cls-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

/* Each row */
.cls-item {
    display: flex;
    gap: 0;
    /* scroll animation */
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity .55s ease, transform .55s cubic-bezier(.34, 1.2, .64, 1);
}

.cls-item.in {
    opacity: 1;
    transform: translateX(0);
}

/* Left column */
.cls-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 52px;
    flex-shrink: 0;
}

/* Dot */
.cls-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #31adad;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #c7f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    margin-top: 20px;
}

.cls-dot-pink {
    background: #ff2d8d;
    box-shadow: 0 0 0 3px #ffd6ed;
}

.cls-dot svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Vertical connector line */
.cls-line {
    width: 2px;
    flex: 1;
    min-height: 28px;
    background: linear-gradient(180deg, #31adad 0%, #c7f0f0 100%);
    margin-top: 0;
}

.cls-item:last-child .cls-line {
    display: none;
}

/* Right content */
.cls-right {
    flex: 1;
    padding: 14px 0 28px 16px;
}

/* ── CARD ── */
.cls-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04), 0 4px 18px rgba(0, 0, 0, .07);
    transition: box-shadow .22s, transform .22s;
}

.cls-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .11);
    transform: translateY(-2px);
}

/* Teal-tint card for day 30 */
.cls-card-teal {
    border-color: #b2e8e8;
    background: linear-gradient(160deg, #f9fffe 0%, #fff 100%);
}

.cls-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -.2px;
}

.cls-card-para {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.78;
    font-weight: 400;
    margin-bottom: 12px;
}

.cls-card-para:last-child {
    margin-bottom: 0;
}

.cls-card-para strong {
    font-weight: 700;
    color: #111827;
}

/* Green callout — key discovery */
.cls-green-callout {
    border-left: 3px solid #22c55e;
    background: #f0fdf4;
    border-radius: 0 8px 8px 0;
    padding: 12px 14px;
    font-size: 13px;
    color: #374151;
    line-height: 1.72;
    margin-top: 12px;
}

.cls-green-callout strong {
    font-weight: 700;
    color: #111827;
}

/* Teal blockquote */
.cls-quote {
    background: #f9fffe;
    border: 1px solid #c7f0f0;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 13px;
    color: #374151;
    line-height: 1.75;
    font-style: italic;
    margin-top: 12px;
}

/* ════════════════════════════════════
   PRESSURE POINTS CARD
════════════════════════════════════ */
.cls-pressure {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04), 0 4px 18px rgba(0, 0, 0, .07);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease, transform .55s cubic-bezier(.34, 1.2, .64, 1);
}

.cls-pressure.in {
    opacity: 1;
    transform: translateY(0);
}

.cls-pressure-title {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
}

.cls-scores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.cls-score-label {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3px;
}

.cls-score-num {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -.4px;
}

.cls-green {
    color: #16a34a;
}

.cls-orange {
    color: #d97706;
}

.cls-teal {
    color: #31adad;
}

.cls-score-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

/* Tailbone warning */
.cls-tailbone {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 12.5px;
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
}

.cls-tailbone strong {
    font-weight: 700;
    color: #111827;
}

/* ════════════════════════════════════
   CTA
════════════════════════════════════ */
.cls-cta-row {
    display: flex;
    justify-content: center;
}

.cls-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, #31adad 0%, #ff2d8d 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(49, 173, 173, .32);
    transition: transform .22s, box-shadow .22s;
    position: relative;
    overflow: hidden;
}

.cls-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .24) 50%, transparent 70%);
    transform: translateX(-130%);
}

.cls-cta:hover::before {
    animation: cls-shine .4s ease forwards;
}

@keyframes cls-shine {
    to {
        transform: translateX(160%);
    }
}

.cls-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(49, 173, 173, .44);
    color: #fff;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 520px) {
    .cls-scores {
        grid-template-columns: 1fr 1fr;
    }

    .cls-left {
        width: 40px;
    }

    .cls-dot {
        width: 30px;
        height: 30px;
    }
}


/* ════════════════════════════════════
   WRAPPER
════════════════════════════════════ */
.ai-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;

    opacity: 0;
    transform: translateY(18px);
    animation: ai-up .6s .1s cubic-bezier(.34, 1.2, .64, 1) forwards;
}

@keyframes ai-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ════════════════════════════════════
   INTRO PARAGRAPH
════════════════════════════════════ */
.ai-intro {
    font-size: 15px;
    color: #374151;
    line-height: 1.82;
    font-weight: 400;
}

.ai-intro strong {
    font-weight: 800;
    color: #111827;
}

/* ════════════════════════════════════
   WHAT I TESTED CALLOUT
════════════════════════════════════ */
.ai-tested-box {
    border: 1px solid #e5e7eb;
    border-left: 3px solid #31adad;
    border-radius: 0 10px 10px 0;
    background: #fff;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-tested-header {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ai-tested-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #31adad;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-tested-icon svg {
    width: 11px;
    height: 11px;
    stroke: #31adad;
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ai-tested-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.ai-tested-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 4px;
}

.ai-tested-list li {
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.ai-tested-list li::before {
    content: '✓';
    color: #31adad;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ════════════════════════════════════
   WHO IT'S FOR / SKIP PARAGRAPHS
════════════════════════════════════ */
.ai-who {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ai-who-para {
    font-size: 15px;
    color: #374151;
    line-height: 1.8;
    font-weight: 400;
}

.ai-who-para strong {
    font-weight: 800;
    color: #111827;
}

/* ════════════════════════════════════
   TESTING METHOD BOX
════════════════════════════════════ */
.ai-method-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ai-method-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 11px;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
}

.ai-method-text {
    font-size: 13px;
    color: #374151;
    line-height: 1.72;
    font-weight: 400;
}

.ai-method-text strong {
    font-weight: 700;
    color: #111827;
}

/* ================================================================
   REVIEW-RESPONSIVE.CSS
   Device-specific media queries for review.css NEW components only.

   NEW components targeted:
   .ai-wrap / .ai-intro / .ai-tested-box / .ai-who / .ai-method-box
   .qv-card (Quick Verdict)
   .qov-wrap / .qov-card (Quick Overview)
   .cls-wrap (Comfort Long Sitting timeline)
   .hit-wrap / .hit-card (How I Tested)
   .snf-wrap / .snf-table-card (Specs & Notable Features)
   .bq-wrap / .bq-grid / .bq-card (Build Quality)
   .syb-wrap / .syb-grid (Should You Buy)
   .ba-wrap / .ba-cards / .ba-table-wrap (Better Alternatives)
   .pc-pros-card / .pc-cons-card (Pros & Cons)

   SKIPPED (already handled in articles-responsive.css / two-fixes.css):
   .content-grid, .art-sidebar, .art-body layout
   .sw-* sidebar widgets
   .faq-item, .sum-wrap
   .main-card, .section-top, .author-col, .form-col
   .poll-box / .qq2-box
   .review-item, .rc-outer

   Load order in Blade:
   <link href="where-why.css">
   <link href="review.css">
   <link href="articles-responsive.css">
   <link href="review-responsive.css">
================================================================ */


/* ================================================================
   GROUP A — ALL PHONES ≤ 539px
   iPhone SE (375) · Galaxy S8+ (360) · Z Fold 5 folded (344)
   iPhone 12 Pro (390) · iPhone 14 Pro Max (430)
   Pixel 7 (412) · Galaxy S20 Ultra (412)
================================================================ */
@media screen and (max-width: 539px) {

    /* ─── INTRO BLOCK ─── */
    .ai-wrap {
        gap: 14px;
    }

    .ai-intro {
        font-size: 13.5px;
        line-height: 1.72;
    }

    .ai-who-para {
        font-size: 13.5px;
        line-height: 1.72;
    }

    .ai-tested-box {
        padding: 13px 14px;
        gap: 8px;
    }

    .ai-tested-title {
        font-size: 13px;
    }

    .ai-tested-list li {
        font-size: 12px;
    }

    .ai-method-box {
        padding: 12px 13px;
        gap: 8px;
    }

    .ai-method-text {
        font-size: 12px;
    }

    /* ─── QUICK VERDICT ─── */
    .qv-card {
        padding: 18px 14px 16px;
        border-radius: 14px;
        max-width: 100%;
    }

    .qv-top {
        gap: 10px;
        margin-bottom: 16px;
    }

    .qv-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .qv-title {
        font-size: 18px;
    }

    .qv-boxes {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 16px;
    }

    .qv-box {
        padding: 12px 13px;
        border-radius: 10px;
    }

    .qv-box-label {
        font-size: 12.5px;
        margin-bottom: 8px;
        gap: 6px;
    }

    .qv-box-icon {
        width: 17px;
        height: 17px;
    }

    .qv-box-list li {
        font-size: 12px;
    }

    .qv-scores-wrap {
        padding: 14px 14px 12px;
        border-radius: 10px;
        margin-bottom: 14px;
    }

    .qv-scores-title {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .qv-scores-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .qv-score-label {
        font-size: 12px;
    }

    .qv-score-val {
        font-size: 12px;
    }

    .qv-track {
        height: 6px;
    }

    .qv-bottomline {
        padding: 12px 13px;
        font-size: 12px;
        margin-bottom: 16px;
        border-radius: 8px;
    }

    .qv-btn-row {
        flex-direction: column;
        gap: 10px;
    }

    .qv-btn-solid,
    .qv-btn-outline {
        width: 100%;
        min-width: unset;
        padding: 12px 16px;
        font-size: 11px;
    }

    /* ─── QUICK OVERVIEW ─── */
    .qov-wrap {
        max-width: 100%;
    }

    .qov-heading {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .qov-card {
        padding: 16px 14px;
        border-radius: 14px;
    }

    .qov-stats {
        grid-template-columns: 1fr 1fr;
        padding: 12px;
        margin-bottom: 16px;
        gap: 0;
    }

    .qov-stat {
        padding: 8px 0;
        border-left: none !important;
    }

    .qov-stat:nth-child(odd) {
        border-right: 1px solid #e5e7eb;
        padding-right: 10px;
    }

    .qov-stat:nth-child(even) {
        padding-left: 10px;
    }

    .qov-stat-icon {
        width: 28px;
        height: 28px;
        border-radius: 7px;
    }

    .qov-stat-icon svg {
        width: 13px;
        height: 13px;
    }

    .qov-stat-label {
        font-size: 10px;
    }

    .qov-stat-val {
        font-size: 13px;
    }

    .qov-sep {
        margin-bottom: 14px;
    }

    .qov-hl-title {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .qov-hl-list {
        gap: 7px;
        margin-bottom: 14px;
    }

    .qov-hl-item {
        font-size: 12.5px;
        gap: 8px;
    }

    .qov-pa-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 14px;
    }

    .qov-pa-box {
        padding: 12px 13px;
        border-radius: 8px;
    }

    .qov-pa-title {
        font-size: 12.5px;
    }

    .qov-pa-list li {
        font-size: 12px;
    }

    .qov-brand {
        padding: 11px 13px;
        font-size: 12px;
        margin-bottom: 14px;
    }

    .qov-cta {
        padding: 12px 22px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    /* ─── COMFORT TIMELINE ─── */
    .cls-wrap {
        max-width: 100%;
    }

    .cls-heading {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .cls-intro {
        font-size: 12.5px;
        margin-bottom: 22px;
    }

    .cls-left {
        width: 36px;
    }

    .cls-dot {
        width: 28px;
        height: 28px;
        margin-top: 16px;
    }

    .cls-dot svg {
        width: 12px;
        height: 12px;
    }

    .cls-line {
        min-height: 20px;
    }

    .cls-right {
        padding: 12px 0 20px 12px;
    }

    .cls-card {
        padding: 14px 14px;
        border-radius: 10px;
    }

    .cls-card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .cls-card-para {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .cls-green-callout {
        padding: 10px 12px;
        font-size: 12px;
    }

    .cls-quote {
        padding: 11px 13px;
        font-size: 12px;
    }

    .cls-pressure {
        padding: 16px 14px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .cls-pressure-title {
        font-size: 13.5px;
        margin-bottom: 14px;
    }

    .cls-scores {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    .cls-score-label {
        font-size: 12px;
    }

    .cls-score-num {
        font-size: 24px;
    }

    .cls-score-desc {
        font-size: 11px;
    }

    .cls-tailbone {
        padding: 10px 12px;
        font-size: 11.5px;
    }

    .cls-cta {
        padding: 12px 24px;
        font-size: 13px;
    }

    /* ─── HOW I TESTED ─── */
    .hit-wrap {
        max-width: 100%;
    }

    .hit-warnings {
        gap: 8px;
        margin-bottom: 20px;
    }

    .hit-warn {
        padding: 11px 13px;
        font-size: 12px;
        gap: 8px;
        border-radius: 8px;
    }

    .hit-warn-icon {
        font-size: 14px;
    }

    .hit-heading {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .hit-card {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .hit-intro {
        font-size: 12.5px;
        margin-bottom: 16px;
    }

    .hit-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 16px;
    }

    .hit-item-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 15px;
    }

    .hit-item-title {
        font-size: 13px;
    }

    .hit-item-desc {
        font-size: 12px;
        padding-left: 0;
        margin-top: 4px;
    }

    .hit-tested-box {
        padding: 14px 14px;
        border-radius: 10px;
        margin-bottom: 14px;
    }

    .hit-tested-title {
        font-size: 12.5px;
        margin-bottom: 10px;
    }

    .hit-tested-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .hit-tested-grid li {
        font-size: 12px;
    }

    .hit-limitations {
        padding: 12px 13px;
        font-size: 12px;
        border-radius: 8px;
    }

    /* ─── SPECS & NOTABLE FEATURES ─── */
    .snf-wrap {
        max-width: 100%;
        gap: 12px;
    }

    .snf-heading {
        font-size: 20px;
    }

    .snf-table-card {
        border-radius: 12px;
    }

    .snf-thead {
        grid-template-columns: 110px 1fr;
        padding: 10px 14px;
    }

    .snf-th {
        font-size: 11.5px;
    }

    .snf-row {
        grid-template-columns: 110px 1fr;
        padding: 11px 14px;
    }

    .snf-feat-icon {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        font-size: 13px;
    }

    .snf-feat-name {
        font-size: 11.5px;
    }

    .snf-detail {
        font-size: 11.5px;
    }

    .snf-standout {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .snf-standout-title {
        font-size: 13px;
    }

    .snf-standout-item {
        font-size: 12px;
        margin-bottom: 8px;
    }

    /* ─── BUILD QUALITY ─── */
    .bq-wrap {
        max-width: 100%;
        gap: 18px;
    }

    .bq-heading {
        font-size: 20px;
    }

    .bq-intro {
        font-size: 12.5px;
    }

    .bq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bq-card {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .bq-card-top {
        gap: 10px;
        margin-bottom: 10px;
    }

    .bq-card-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 15px;
    }

    .bq-card-title {
        font-size: 14px;
    }

    .bq-badge {
        font-size: 10.5px;
        padding: 3px 10px;
        margin-bottom: 10px;
    }

    .bq-card-text {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .bq-warranty-title {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .bq-warranty-list li {
        font-size: 12px;
    }

    .bq-devil-inner {
        padding: 14px 14px;
    }

    .bq-devil-title {
        font-size: 13px;
    }

    .bq-devil-text {
        font-size: 12px;
    }

    .bq-assembly {
        padding: 14px 14px;
        border-radius: 12px;
    }

    .bq-assembly-title {
        font-size: 13px;
    }

    .bq-assembly-row {
        font-size: 12px;
    }

    /* ─── SHOULD YOU BUY ─── */
    .syb-wrap {
        max-width: 100%;
        gap: 14px;
    }

    .syb-heading {
        font-size: 20px;
    }

    .syb-intro {
        font-size: 12.5px;
    }

    .syb-grid {
        flex-direction: column;
        gap: 12px;
    }

    .syb-card {
        padding: 16px 14px;
        border-radius: 12px;
        min-height: unset;
    }

    .syb-card-header {
        gap: 10px;
        margin-bottom: 14px;
    }

    .syb-header-icon {
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    .syb-card-label {
        font-size: 17px;
    }

    .syb-item-text {
        font-size: 13px !important;
    }

    .syb-item-text strong {
        font-size: 13px !important;
    }

    .syb-dot {
        width: 6px;
        height: 6px;
    }

    .syb-unsure {
        padding: 14px 14px;
        border-radius: 12px;
    }

    .syb-unsure-title {
        font-size: 13px;
    }

    .syb-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .syb-action {
        padding: 11px 12px;
        border-radius: 10px;
    }

    .syb-action-icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .syb-action-title {
        font-size: 12.5px;
    }

    .syb-action-sub {
        font-size: 11px;
    }

    /* ─── BETTER ALTERNATIVES ─── */
    .ba-wrap {
        max-width: 100%;
        gap: 14px;
    }

    .ba-heading {
        font-size: 19px;
    }

    .ba-intro {
        font-size: 12.5px;
    }

    .ba-cards {
        gap: 10px;
    }

    .ba-card {
        padding: 14px 13px;
        border-radius: 10px;
    }

    .ba-card-top {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 8px;
    }

    .ba-card-name {
        font-size: 14px;
    }

    .ba-btn {
        padding: 7px 14px;
        font-size: 11.5px;
    }

    .ba-price-tag {
        font-size: 11px;
        padding: 2px 9px;
        margin-bottom: 8px;
    }

    .ba-meta-row {
        font-size: 12px;
    }

    .ba-table-wrap {
        border-radius: 10px;
        overflow-x: auto;
    }

    .ba-table-head,
    .ba-table-row {
        grid-template-columns: 85px 1fr 1fr 1fr;
        min-width: 340px;
    }

    .ba-th,
    .ba-td {
        padding: 9px 8px;
        font-size: 10.5px;
    }

    .ba-bottom-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ba-link-card {
        padding: 14px 12px;
        border-radius: 10px;
    }

    .ba-link-card-title {
        font-size: 12px;
    }

    .ba-link-card-sub {
        font-size: 11px;
    }

    .ba-link-card-icon {
        font-size: 15px;
    }

    /* ─── PROS & CONS ─── */
    .pc-pros-card,
    .pc-cons-card {
        padding: 16px 14px;
        border-radius: 14px;
    }

    .pc-card-head {
        margin-bottom: 14px;
        gap: 8px;
    }

    .pc-head-icon {
        width: 32px;
        height: 32px;
    }

    .pc-card-head-title {
        font-size: 16px;
    }

    .pc-list {
        gap: 10px;
    }

    .pc-list-item {
        gap: 8px;
    }

    .pc-ico {
        width: 20px;
        height: 20px;
    }

    .pc-item-title {
        font-size: 13px;
    }

    .pc-item-desc {
        font-size: 11.5px;
    }

    .pc-cta-card {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .pc-cta-title {
        font-size: 17px;
    }

    .pc-cta-desc {
        font-size: 12.5px;
    }

    .pc-cta-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}


/* ================================================================
   GROUP A2 — TINY PHONES ≤ 375px
   iPhone SE (375) · Galaxy S8+ (360) · Z Fold 5 folded (344)
================================================================ */
@media screen and (max-width: 375px) {

    /* Intro */
    .ai-intro {
        font-size: 13px;
    }

    .ai-who-para {
        font-size: 13px;
    }

    /* Quick Verdict */
    .qv-card {
        padding: 14px 12px;
    }

    .qv-title {
        font-size: 16px;
    }

    .qv-btn-solid,
    .qv-btn-outline {
        font-size: 11px;
        padding: 11px 14px;
    }

    /* Quick Overview */
    .qov-heading {
        font-size: 18px;
    }

    .qov-card {
        padding: 14px 12px;
    }

    .qov-stat-val {
        font-size: 12px;
    }

    /* Timeline */
    .cls-heading {
        font-size: 18px;
    }

    .cls-card {
        padding: 12px 12px;
    }

    .cls-card-title {
        font-size: 13px;
    }

    .cls-scores {
        grid-template-columns: 1fr;
    }

    .cls-score-num {
        font-size: 22px;
    }

    /* How I Tested */
    .hit-heading {
        font-size: 18px;
    }

    .hit-card {
        padding: 14px 12px;
    }

    /* Specs */
    .snf-heading {
        font-size: 18px;
    }

    .snf-thead,
    .snf-row {
        grid-template-columns: 95px 1fr;
        padding: 9px 12px;
    }

    /* Build Quality */
    .bq-heading {
        font-size: 18px;
    }

    .bq-card {
        padding: 13px 12px;
    }

    /* Should You Buy */
    .syb-heading {
        font-size: 18px;
    }

    .syb-card {
        padding: 13px 12px;
    }

    .syb-card-label {
        font-size: 15px;
    }

    /* Better Alternatives */
    .ba-heading {
        font-size: 17px;
    }

    .ba-table-head,
    .ba-table-row {
        grid-template-columns: 70px 1fr 1fr 1fr;
    }

    .ba-th,
    .ba-td {
        padding: 8px 6px;
        font-size: 10px;
    }

    /* Pros & Cons */
    .pc-card-head-title {
        font-size: 15px;
    }

    .pc-cta-title {
        font-size: 16px;
    }
}


/* ================================================================
   GROUP B — SURFACE DUO (540px – 767px)
================================================================ */
@media screen and (min-width: 540px) and (max-width: 767px) {

    /* Intro */
    .ai-intro {
        font-size: 14px;
    }

    .ai-who-para {
        font-size: 14px;
    }

    .ai-tested-list li {
        font-size: 12.5px;
    }

    .ai-method-text {
        font-size: 12.5px;
    }

    /* Quick Verdict */
    .qv-card {
        padding: 22px 18px 18px;
        border-radius: 16px;
        max-width: 100%;
    }

    .qv-title {
        font-size: 19px;
    }

    .qv-boxes {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .qv-scores-grid {
        grid-template-columns: 1fr 1fr;
    }

    .qv-btn-row {
        flex-direction: column;
    }

    .qv-btn-solid,
    .qv-btn-outline {
        width: 100%;
        min-width: unset;
        font-size: 13.5px;
    }

    /* Quick Overview */
    .qov-heading {
        font-size: 22px;
    }

    .qov-card {
        padding: 20px 18px;
        border-radius: 14px;
    }

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

    .qov-stat {
        padding: 8px 0;
        border-left: none !important;
    }

    .qov-stat:nth-child(odd) {
        border-right: 1px solid #e5e7eb;
        padding-right: 12px;
    }

    .qov-stat:nth-child(even) {
        padding-left: 12px;
    }

    .qov-pa-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Timeline */
    .cls-heading {
        font-size: 22px;
    }

    .cls-card {
        padding: 16px 18px;
    }

    .cls-scores {
        grid-template-columns: repeat(3, 1fr);
    }

    /* How I Tested */
    .hit-heading {
        font-size: 22px;
    }

    .hit-card {
        padding: 20px 18px;
    }

    .hit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hit-item-desc {
        padding-left: 44px;
    }

    .hit-tested-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Specs */
    .snf-heading {
        font-size: 22px;
    }

    .snf-thead,
    .snf-row {
        grid-template-columns: 160px 1fr;
        padding: 12px 16px;
    }

    /* Build Quality */
    .bq-heading {
        font-size: 22px;
    }

    .bq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .bq-card {
        padding: 18px 16px;
    }

    /* Should You Buy */
    .syb-heading {
        font-size: 21px;
    }

    .syb-grid {
        flex-direction: column;
    }

    .syb-card {
        min-height: unset;
    }

    .syb-actions {
        grid-template-columns: 1fr 1fr;
    }

    /* Better Alternatives */
    .ba-heading {
        font-size: 21px;
    }

    .ba-table-head,
    .ba-table-row {
        grid-template-columns: 130px 1fr 1fr 1fr;
    }

    .ba-th,
    .ba-td {
        padding: 11px 12px;
        font-size: 11.5px;
    }

    .ba-bottom-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Pros & Cons */
    .pc-card-head-title {
        font-size: 17px;
    }

    .pc-item-title {
        font-size: 13px;
    }

    .pc-item-desc {
        font-size: 12px;
    }

    .pc-cta-title {
        font-size: 19px;
    }
}


/* ================================================================
   GROUP C — TABLETS PORTRAIT (768px – 879px)
   iPad Mini (768) · Galaxy Z Fold 5 open (882 edge case)
================================================================ */
@media screen and (min-width: 768px) and (max-width: 879px) {

    .ai-intro {
        font-size: 14.5px;
    }

    .ai-who-para {
        font-size: 14.5px;
    }

    /* Quick Verdict */
    .qv-card {
        padding: 24px 20px 20px;
        max-width: 100%;
    }

    .qv-title {
        font-size: 20px;
    }

    .qv-boxes {
        grid-template-columns: 1fr 1fr;
    }

    .qv-scores-grid {
        grid-template-columns: 1fr 1fr;
    }

    .qv-btn-row {
        flex-direction: row;
    }

    .qv-btn-solid,
    .qv-btn-outline {
        min-width: 160px;
        font-size: 13.5px;
    }

    /* Quick Overview */
    .qov-heading {
        font-size: 24px;
    }

    .qov-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .qov-pa-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Timeline */
    .cls-heading {
        font-size: 24px;
    }

    .cls-scores {
        grid-template-columns: repeat(3, 1fr);
    }

    /* How I Tested */
    .hit-heading {
        font-size: 24px;
    }

    .hit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hit-tested-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Specs */
    .snf-heading {
        font-size: 24px;
    }

    .snf-thead,
    .snf-row {
        grid-template-columns: 190px 1fr;
    }

    /* Build Quality */
    .bq-heading {
        font-size: 24px;
    }

    .bq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    /* Should You Buy */
    .syb-heading {
        font-size: 22px;
    }

    .syb-grid {
        flex-direction: row;
    }

    .syb-actions {
        grid-template-columns: 1fr 1fr;
    }

    /* Better Alternatives */
    .ba-heading {
        font-size: 22px;
    }

    .ba-table-head,
    .ba-table-row {
        grid-template-columns: 150px 1fr 1fr 1fr;
    }

    .ba-bottom-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ================================================================
   GROUP D — SURFACE PRO 7 + ASUS ZENBOOK FOLD + Z FOLD OPEN
   (880px – 1023px)
================================================================ */
@media screen and (min-width: 880px) and (max-width: 1023px) {

    .ai-intro {
        font-size: 14.5px;
    }

    .ai-who-para {
        font-size: 14.5px;
    }

    /* Quick Verdict */
    .qv-card {
        max-width: 100%;
        padding: 26px 22px 22px;
    }

    .qv-title {
        font-size: 21px;
    }

    .qv-boxes {
        grid-template-columns: 1fr 1fr;
    }

    .qv-scores-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Quick Overview */
    .qov-heading {
        font-size: 26px;
    }

    .qov-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Timeline */
    .cls-heading {
        font-size: 26px;
    }

    .cls-scores {
        grid-template-columns: repeat(3, 1fr);
    }

    /* How I Tested */
    .hit-heading {
        font-size: 26px;
    }

    .hit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hit-tested-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Specs */
    .snf-heading {
        font-size: 26px;
    }

    .snf-thead,
    .snf-row {
        grid-template-columns: 200px 1fr;
    }

    /* Build Quality */
    .bq-heading {
        font-size: 26px;
    }

    .bq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    /* Should You Buy */
    .syb-heading {
        font-size: 24px;
    }

    .syb-grid {
        flex-direction: row;
    }

    .syb-actions {
        grid-template-columns: 1fr 1fr;
    }

    /* Better Alternatives */
    .ba-heading {
        font-size: 23px;
    }

    .ba-table-head,
    .ba-table-row {
        grid-template-columns: 155px 1fr 1fr 1fr;
    }

    .ba-bottom-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ================================================================
   GROUP E — IPAD PRO (1024px – 1199px)
================================================================ */
@media screen and (min-width: 1024px) and (max-width: 1199px) {

    .qv-card {
        max-width: 100%;
    }

    .qov-heading {
        font-size: 28px;
    }

    .qov-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .cls-heading {
        font-size: 28px;
    }

    .hit-heading {
        font-size: 28px;
    }

    .snf-heading {
        font-size: 28px;
    }

    .bq-heading {
        font-size: 28px;
    }

    .bq-grid {
        grid-template-columns: 1fr 1fr;
    }

    .syb-heading {
        font-size: 25px;
    }

    .syb-grid {
        flex-direction: row;
    }

    .ba-heading {
        font-size: 24px;
    }

    .ba-table-head,
    .ba-table-row {
        grid-template-columns: 160px 1fr 1fr 1fr;
    }

    .ba-bottom-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ================================================================
   GROUP F — NEST HUB (900–1100px, max-height: 640px)
   Compact vertical rhythm for short landscape display
================================================================ */
@media screen and (min-width: 900px) and (max-width: 1100px) and (max-height: 640px) {

    /* Intro */
    .ai-intro {
        font-size: 13px;
        line-height: 1.65;
    }

    .ai-who-para {
        font-size: 13px;
        line-height: 1.65;
    }

    .ai-tested-box {
        padding: 12px 13px;
    }

    .ai-tested-list li {
        font-size: 12px;
    }

    .ai-method-text {
        font-size: 12px;
    }

    /* Quick Verdict */
    .qv-card {
        padding: 18px 16px 16px;
        border-radius: 14px;
        max-width: 100%;
    }

    .qv-top {
        margin-bottom: 14px;
    }

    .qv-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .qv-title {
        font-size: 18px;
    }

    .qv-boxes {
        margin-bottom: 14px;
    }

    .qv-box {
        padding: 11px 13px;
    }

    .qv-box-label {
        font-size: 12px;
    }

    .qv-box-list li {
        font-size: 11.5px;
    }

    .qv-scores-wrap {
        padding: 13px 13px 11px;
        margin-bottom: 12px;
    }

    .qv-scores-title {
        font-size: 12.5px;
        margin-bottom: 10px;
    }

    .qv-score-label {
        font-size: 11.5px;
    }

    .qv-score-val {
        font-size: 12px;
    }

    .qv-bottomline {
        padding: 11px 12px;
        font-size: 11.5px;
        margin-bottom: 14px;
    }

    .qv-btn-solid,
    .qv-btn-outline {
        padding: 11px 16px;
        font-size: 12.5px;
    }

    /* Quick Overview */
    .qov-heading {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .qov-card {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .qov-stats {
        padding: 10px 12px;
        margin-bottom: 14px;
    }

    .qov-stat-icon {
        width: 28px;
        height: 28px;
    }

    .qov-stat-label {
        font-size: 10px;
    }

    .qov-stat-val {
        font-size: 12.5px;
    }

    .qov-hl-title {
        font-size: 12.5px;
    }

    .qov-hl-item {
        font-size: 12px;
    }

    .qov-pa-box {
        padding: 11px 12px;
    }

    .qov-pa-title {
        font-size: 12px;
    }

    .qov-pa-list li {
        font-size: 11.5px;
    }

    .qov-brand {
        padding: 11px 12px;
        font-size: 12px;
    }

    .qov-cta {
        padding: 11px 20px;
        font-size: 12.5px;
    }

    /* Timeline */
    .cls-heading {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .cls-intro {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .cls-dot {
        width: 28px;
        height: 28px;
    }

    .cls-right {
        padding: 12px 0 18px 12px;
    }

    .cls-card {
        padding: 13px 14px;
    }

    .cls-card-title {
        font-size: 13.5px;
    }

    .cls-card-para {
        font-size: 12px;
    }

    .cls-pressure {
        padding: 14px 14px;
    }

    .cls-pressure-title {
        font-size: 13px;
    }

    .cls-score-num {
        font-size: 24px;
    }

    .cls-score-desc {
        font-size: 11px;
    }

    .cls-cta {
        padding: 11px 22px;
        font-size: 12.5px;
    }

    /* How I Tested */
    .hit-heading {
        font-size: 20px;
    }

    .hit-card {
        padding: 16px 14px;
    }

    .hit-intro {
        font-size: 12.5px;
    }

    .hit-item-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .hit-item-title {
        font-size: 12.5px;
    }

    .hit-item-desc {
        font-size: 11.5px;
    }

    .hit-tested-box {
        padding: 14px;
    }

    .hit-tested-title {
        font-size: 12.5px;
    }

    .hit-tested-grid li {
        font-size: 11.5px;
    }

    .hit-limitations {
        padding: 12px 13px;
        font-size: 12px;
    }

    /* Specs */
    .snf-heading {
        font-size: 20px;
    }

    .snf-row {
        padding: 11px 16px;
    }

    .snf-feat-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .snf-feat-name {
        font-size: 12px;
    }

    .snf-detail {
        font-size: 12px;
    }

    .snf-standout {
        padding: 16px 16px;
    }

    .snf-standout-title {
        font-size: 12.5px;
    }

    .snf-standout-item {
        font-size: 12px;
    }

    /* Build Quality */
    .bq-heading {
        font-size: 20px;
    }

    .bq-intro {
        font-size: 12.5px;
    }

    .bq-grid {
        gap: 12px;
    }

    .bq-card {
        padding: 16px 14px;
    }

    .bq-card-title {
        font-size: 13.5px;
    }

    .bq-badge {
        font-size: 10.5px;
    }

    .bq-card-text {
        font-size: 12px;
    }

    .bq-devil-text {
        font-size: 12px;
    }

    .bq-assembly-row {
        font-size: 12px;
    }

    /* Should You Buy */
    .syb-heading {
        font-size: 20px;
    }

    .syb-intro {
        font-size: 12.5px;
    }

    .syb-card-label {
        font-size: 17px;
    }

    .syb-item-text {
        font-size: 13px !important;
    }

    .syb-item-text strong {
        font-size: 13px !important;
    }

    .syb-action-title {
        font-size: 12px;
    }

    /* Better Alternatives */
    .ba-heading {
        font-size: 20px;
    }

    .ba-intro {
        font-size: 12.5px;
    }

    .ba-card {
        padding: 14px 14px;
    }

    .ba-card-name {
        font-size: 14px;
    }

    .ba-btn {
        padding: 7px 13px;
        font-size: 11.5px;
    }

    .ba-meta-row {
        font-size: 12px;
    }

    .ba-th,
    .ba-td {
        padding: 10px 12px;
        font-size: 11.5px;
    }

    .ba-link-card-title {
        font-size: 12px;
    }

    .ba-link-card-sub {
        font-size: 11px;
    }

    /* Pros & Cons */
    .pc-card-head-title {
        font-size: 17px;
    }

    .pc-item-title {
        font-size: 13px;
    }

    .pc-item-desc {
        font-size: 11.5px;
    }

    .pc-cta-title {
        font-size: 20px;
    }

    .pc-cta-desc {
        font-size: 12.5px;
    }
}


/* ================================================================
   GROUP G — NEST HUB MAX (1200px – 1300px, max-height: 820px)
================================================================ */
@media screen and (min-width: 1200px) and (max-width: 1300px) and (max-height: 820px) {

    /* Intro */
    .ai-intro {
        font-size: 14px;
    }

    .ai-who-para {
        font-size: 14px;
    }

    /* Quick Verdict */
    .qv-title {
        font-size: 20px;
    }

    .qv-box-label {
        font-size: 13px;
    }

    .qv-box-list li {
        font-size: 12.5px;
    }

    .qv-bottomline {
        font-size: 12.5px;
    }

    .qv-btn-solid,
    .qv-btn-outline {
        font-size: 13.5px;
        padding: 12px 18px;
    }

    /* Quick Overview */
    .qov-heading {
        font-size: 26px;
    }

    .qov-stat-val {
        font-size: 13.5px;
    }

    .qov-hl-item {
        font-size: 13px;
    }

    .qov-pa-list li {
        font-size: 12.5px;
    }

    .qov-brand {
        font-size: 12.5px;
    }

    /* Timeline */
    .cls-heading {
        font-size: 26px;
    }

    .cls-card-title {
        font-size: 15px;
    }

    .cls-card-para {
        font-size: 13px;
    }

    .cls-score-num {
        font-size: 28px;
    }

    /* How I Tested */
    .hit-heading {
        font-size: 26px;
    }

    .hit-intro {
        font-size: 13px;
    }

    .hit-item-desc {
        font-size: 12.5px;
    }

    /* Specs */
    .snf-heading {
        font-size: 26px;
    }

    .snf-feat-name {
        font-size: 13px;
    }

    .snf-detail {
        font-size: 13px;
    }

    .snf-standout-item {
        font-size: 13px;
    }

    /* Build Quality */
    .bq-heading {
        font-size: 26px;
    }

    .bq-intro {
        font-size: 13.5px;
    }

    .bq-card-title {
        font-size: 14.5px;
    }

    .bq-card-text {
        font-size: 13px;
    }

    /* Should You Buy */
    .syb-heading {
        font-size: 25px;
    }

    .syb-intro {
        font-size: 13.5px;
    }

    .syb-item-text {
        font-size: 14px !important;
    }

    .syb-item-text strong {
        font-size: 14px !important;
    }

    /* Better Alternatives */
    .ba-heading {
        font-size: 24px;
    }

    .ba-intro {
        font-size: 13.5px;
    }

    .ba-card-name {
        font-size: 15.5px;
    }

    .ba-meta-row {
        font-size: 12.5px;
    }

    .ba-th,
    .ba-td {
        font-size: 12.5px;
    }

    /* Pros & Cons */
    .pc-item-title {
        font-size: 14px;
    }

    .pc-item-desc {
        font-size: 12.5px;
    }

    .pc-cta-title {
        font-size: 22px;
    }
}
