/* ═══════════════════════════════
   BREADCRUMB
═══════════════════════════════ */
.cmp-bc-wrap {
    padding: 18px 0 0;
    background: transparent;
}

.cmp-bc {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.cmp-bc li a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.cmp-bc li a:hover {
    color: var(--teal);
}

.cmp-bc li.active {
    color: var(--dark);
    font-weight: 500;
}

.cmp-bc-sep {
    color: #c4c4c4;
    font-size: 14px;
}

/* ═══════════════════════════════
   HERO SECTION WRAPPER
═══════════════════════════════ */
.cmp-hero-section {
    background: linear-gradient(135deg, #e8fafa 0%, #f0fffe 30%, #fdf4ff 65%, #fce8f4 100%);
    padding: 0 0 60px;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative blobs */
.cmp-hero-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 45, 141, .07) 0%, transparent 70%);
    pointer-events: none;
}

.cmp-hero-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(49, 173, 173, .08) 0%, transparent 70%);
    pointer-events: none;
}

.cmp-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ═══════════════════════════════
   HERO GRID — 2 COLUMNS
═══════════════════════════════ */
.cmp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-top: 40px;
}

/* ═══════════════════════════════
   LEFT COLUMN — TEXT
═══════════════════════════════ */
.cmp-hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── BADGES ROW ── */
.cmp-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cmp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 6px rgba(0, 0, 0, .05);
}

.cmp-badge i {
    font-size: 13px;
}

.cmp-badge-expert i {
    color: #31adad;
}

.cmp-badge-readers i {
    color: #ff2d8d;
}

.cmp-badge-updated i {
    color: #31adad;
}

/* ── MAIN TITLE ── */
.cmp-hero-title {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -1px;
}

/* "ErgoChair Pro" — teal */
.cmp-title-teal {
    color: #31adad;
    display: inline;
}

/* " vs " — dark */
.cmp-title-vs {
    color: var(--dark);
    font-weight: 900;
}

/* "ComfortMax" — pink */
.cmp-title-pink {
    color: #ff2d8d;
    display: inline;
}

/* " Elite" — purple */
.cmp-title-purple {
    color: #8b5cf6;
    display: inline;
}

/* "Which Chair Should You Really Get?" — all dark */
.cmp-title-dark-line {
    display: block;
    color: var(--dark);
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 900;
    line-height: 1.1;
    margin-top: 4px;
}

/* ── DESCRIPTION ── */
.cmp-hero-desc {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.75;
    max-width: 520px;
    font-weight: 400;
}

/* ── LAST UPDATED ROW ── */
.cmp-updated-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.cmp-updated-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .15);
}

.cmp-updated-text {
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
}

.cmp-wc-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: #31adad;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    transition: opacity .2s;
}

.cmp-wc-btn:hover {
    opacity: .75;
}

.cmp-wc-arrow {
    font-size: 11px;
    transition: transform .25s;
    display: inline-block;
}

.cmp-wc-arrow.open {
    transform: rotate(180deg);
}

/* What changed dropdown */
.cmp-wc-content {
    display: none;
    background: #f0fdfd;
    border: 1px solid #b2e8e8;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--body-c);
    margin-top: -8px;
    line-height: 1.7;
}

.cmp-wc-content.open {
    display: block;
}

.cmp-wc-content ul {
    margin: 6px 0 0 14px;
}

.cmp-wc-content li {
    margin-bottom: 3px;
}

/* ── DISCLOSURE BOX ── */
.cmp-disclosure {
    background: #fdf4d2;
    border: 1px solid rgba(245, 158, 11, .2);
    border-left: 3.5px solid #78350f;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    backdrop-filter: blur(6px);
    max-width: 540px;
}

.cmp-disclosure-icon {
    color: #78350f;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.cmp-disclosure-text {
    font-size: 12.5px;
    color: #374151;
    line-height: 1.65;
}

.cmp-disclosure-text strong {
    color: #78350f;
    font-weight: 700;
}

/* ═══════════════════════════════
   RIGHT COLUMN — IMAGE CARD
═══════════════════════════════ */
.cmp-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Glow/halo behind the card */
.cmp-img-halo {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 45, 141, .12) 0%, rgba(49, 173, 173, .08) 50%, transparent 75%);
    z-index: 0;
    pointer-events: none;
    filter: blur(20px);
}

.cmp-chair-card {
    margin-top: 25px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: -10px 20px 20px -30px rgba(255, 45, 145, 0.6), 0 10px 30px 15px rgba(60, 176, 173, 0.5), -20px -15px 20px rgba(255, 45, 145, 0.8), 0 0 50px rgba(60, 176, 173, 0.5);
    background: linear-gradient(135deg, rgba(60, 176, 173, 0.2), rgba(255, 45, 145, 0.2));
    transform: perspective(600px) rotateY(-10deg);
    -webkit-transform: perspective(600px) rotateY(-10deg);
    -moz-transform: perspective(600px) rotateY(-10deg);
    -ms-transform: perspective(600px) rotateY(-10deg);
    -o-transform: perspective(600px) rotateY(-10deg);
}

.cmp-chair-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateZ(0) rotateY(-3deg);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cmp-chair-card img:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Bottom pink-to-transparent fade at card bottom */
.cmp-card-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255, 200, 230, .35), transparent);
    border-radius: 0 0 28px 28px;
    pointer-events: none;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 900px) {
    .cmp-hero-grid {
        grid-template-columns: 1fr;
        padding-top: 28px;
        gap: 28px;
    }

    .cmp-hero-right {
        order: -1;
    }

    .cmp-chair-card {
        max-width: 340px;
        aspect-ratio: 3/3.5;
    }

    .cmp-hero-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .cmp-hero-title br {
        display: none;
    }

    .cmp-title-dark-line {
        font-size: clamp(26px, 5.5vw, 38px);
    }
}

@media (max-width: 540px) {
    .cmp-hero-inner {
        padding: 0 16px;
    }

    .cmp-badge-row {
        gap: 7px;
    }

    .cmp-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
}


/* ═══════════════════════════
   QUICK NAV CARD
═══════════════════════════ */
.qnc-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 28px;
    width: 100%;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, .05),
        0 4px 20px rgba(0, 0, 0, .06);
}

/* ── ROW (each item) ── */
.qnc-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 0;
    cursor: pointer;
    text-decoration: none;
}

.qnc-row:hover .qnc-title {
    opacity: .8;
}

.qnc-row:hover .qnc-sub {
    opacity: .7;
}

/* ── ICON BADGE ── */
.qnc-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

.qnc-icon-orange {
    background: linear-gradient(135deg, #fb923c 0%, #f59e0b 100%);
    color: #fff;
}

.qnc-icon-green {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #fff;
}

/* ── TEXT ── */
.qnc-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 2px;
}

.qnc-title {
    font-size: 15.5px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    transition: opacity .2s;
}

.qnc-sub {
    font-size: 13.5px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.5;
    transition: opacity .2s;
}

.qnc-sub .qnc-arrow {
    color: #111827;
    font-weight: 500;
    margin-left: 2px;
}

/* ── DASHED DIVIDER ── */
.qnc-divider {
    border: none;
    border-top: 1.5px dashed #d1d5db;
    margin: 14px 0;
}

/* ── FOOTER ROW ── */
.qnc-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 2px;
}

.qnc-verified-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.qnc-verified-text {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}


/* ════════════════════════════════
   POLL CARD
════════════════════════════════ */
.wmm-card {
    background: #f5f5fa;
    border-radius: 18px;
    padding: 28px 26px 24px;
    width: 100%;
    margin-top: 30px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, .04),
        0 6px 24px rgba(0, 0, 0, .07);
    background: linear-gradient(180deg, #f7f7fc 80%, #fdf0f6 100%);
}

/* ── HEADING ── */
.wmm-heading {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
    line-height: 1.3;
}

/* ── OPTION WRAPPER ── */
.wmm-option {
    margin-bottom: 14px;
}

.wmm-option:last-of-type {
    margin-bottom: 0;
}

/* Label row: name left, pct right (hidden before vote) */
.wmm-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.wmm-label {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    transition: color .25s;
}

.wmm-label.is-chosen {
    color: #31adad;
}

.wmm-pct {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    opacity: 0;
    transition: opacity .3s .2s;
}

.wmm-card.voted .wmm-pct {
    opacity: 1;
}

/* ── BAR TRACK ── */
.wmm-track {
    position: relative;
    height: 46px;
    border-radius: 10px;
    background: #e2e2eb;
    overflow: hidden;
    cursor: pointer;
    transition: background .2s;
}

/* after voted — not clickable */
.wmm-card.voted .wmm-track {
    cursor: default;
}

/* ── FILL BAR (hidden before vote) ── */
.wmm-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    border-radius: 10px;
    background: #d6d6e0;
    transition: width .55s cubic-bezier(.4, 0, .2, 1);
}

/* Selected option fill — teal→pink gradient */
.wmm-option.is-chosen .wmm-fill {
    background: linear-gradient(90deg, #31adad 0%, #ff2d8d 100%);
}

/* ── INNER LABEL on the bar ── */
.wmm-bar-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-left: 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #4b5563;
    pointer-events: none;
    white-space: nowrap;
    transition: color .25s;
}

/* Before vote: "Click to vote" text */
.wmm-bar-label .wmm-click-txt {
    transition: opacity .2s;
}

.wmm-card.voted .wmm-bar-label .wmm-click-txt {
    opacity: 0;
}

/* "✓ Your choice" label — only visible on chosen option after vote */
.wmm-bar-label .wmm-chosen-txt {
    position: absolute;
    left: 16px;
    opacity: 0;
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    transition: opacity .25s .3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wmm-option.is-chosen.voted-item .wmm-bar-label .wmm-chosen-txt {
    opacity: 1;
}

/* Hover state before voting */
.wmm-track:hover .wmm-fill {
    background: #d0d0da;
}

.wmm-card.voted .wmm-track:hover .wmm-fill {
    background: #d6d6e0;
}

.wmm-card.voted .wmm-option.is-chosen .wmm-track:hover .wmm-fill {
    background: linear-gradient(90deg, #31adad 0%, #ff2d8d 100%);
}

/* ── FOOTER ── */
.wmm-footer {
    margin-top: 18px;
    font-size: 12.5px;
    color: #9ca3af;
    font-weight: 400;
    display: none;
}

.wmm-card.voted .wmm-footer {
    display: block;
}

/* ════════════════════════════════════
   MAIN CARD
════════════════════════════════════ */
.qvs-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 26px 24px;
    width: 100%;
    /* max-width: 740px; */
    box-shadow:
        0 2px 6px rgba(0, 0, 0, .05),
        0 12px 40px rgba(0, 0, 0, .09);
}

/* ════════════════════════════════════
   TOP ROW — icon + title + rating box
════════════════════════════════════ */
.qvs-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.qvs-title-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* Icon badge */
.qvs-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #31adad 0%, #1e8f8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(49, 173, 173, .30);
}

.qvs-title-text {
    padding-top: 2px;
}

.qvs-title {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(90deg, #31adad 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 3px;
}

.qvs-subtitle {
    font-size: 12.5px;
    color: #6b7280;
    font-weight: 400;
}

/* Rating box */
.qvs-rating-box {
    background: #fffbf0;
    border: 1.5px solid #fde68a;
    border-radius: 14px;
    padding: 12px 18px;
    text-align: center;
    flex-shrink: 0;
    min-width: 148px;
}

.qvs-rating-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 5px;
}

.qvs-rating-star-big {
    color: #f59e0b;
    font-size: 17px;
}

.qvs-rating-score {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.qvs-rating-max {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
    margin-top: 2px;
}

.qvs-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 5px;
}

.qvs-star {
    color: #f59e0b;
    font-size: 14px;
}

.qvs-star.half {
    color: #d1d5db;
}

.qvs-reviews {
    font-size: 11px;
    color: #6b7280;
    font-weight: 400;
}

/* ════════════════════════════════════
   STATS ROW — 4 mini cards
════════════════════════════════════ */
.qvs-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.qvs-stat {
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.qvs-stat-blue {
    background: #eff8ff;
    border: 1px solid #bfdbfe;
}

.qvs-stat-teal {
    background: #f0fffe;
    border: 1px solid #99f6e4;
}

.qvs-stat-purple {
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
}

.qvs-stat-amber {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.qvs-stat-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    color: #374151;
}

.qvs-stat-label i {
    font-size: 13px;
}

.qvs-stat-blue .qvs-stat-label i {
    color: #3b82f6;
}

.qvs-stat-teal .qvs-stat-label i {
    color: #31adad;
}

.qvs-stat-purple .qvs-stat-label i {
    color: #8b5cf6;
}

.qvs-stat-amber .qvs-stat-label i {
    color: #f59e0b;
}

.qvs-stat-val {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
}

.qvs-stat-blue .qvs-stat-val {
    color: #2563eb;
}

.qvs-stat-teal .qvs-stat-val {
    color: #0e9f9f;
}

.qvs-stat-purple .qvs-stat-val {
    color: #7c3aed;
}

.qvs-stat-amber .qvs-stat-val {
    color: #d97706;
}

.qvs-stat-sub {
    font-size: 11px;
    color: #6b7280;
    font-weight: 400;
}

/* ════════════════════════════════════
   COMPARISON TABLE
════════════════════════════════════ */
.qvs-table {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

/* Table header — gradient */
.qvs-table-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(90deg, #31adad 0%, #ff2d8d 100%);
    padding: 13px 18px;
}

.qvs-th {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

/* Table rows */
.qvs-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px 18px;
    border-top: 1px solid #f3f4f6;
    background: #fff;
    transition: background .15s;
}

.qvs-table-row:first-of-type {
    border-top: none;
}

.qvs-table-row:hover {
    background: #fafafa;
}

.qvs-td-cat {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

.qvs-td-pick {
    font-size: 13px;
    font-weight: 700;
}

/* ErgoChair Pro — teal */
.qvs-pick-teal {
    background: linear-gradient(90deg, #31adad, #0e9f9f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ComfortMax Elite — pink→purple */
.qvs-pick-pink {
    background: linear-gradient(90deg, #ff2d8d, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ════════════════════════════════════
   DIVIDER
════════════════════════════════════ */
.qvs-divider {
    border: none;
    border-top: 1px solid #f0f0f5;
    margin: 0 0 18px;
}

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

.qvs-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #31adad 0%, #ff2d8d 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 16px rgba(49, 173, 173, .25);
}

.qvs-btn-primary:hover {
    opacity: .88;
    transform: translateY(-1px);
    color: #fff;
}

.qvs-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #31adad;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 10px;
    border: 2px solid #31adad;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
}

.qvs-btn-outline:hover {
    background: #31adad;
    color: #fff;
}

/* ════════════════════════════════════
   DISCLAIMER
════════════════════════════════════ */
.qvs-disclaimer {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 11px 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.qvs-disclaimer-icon {
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.qvs-disclaimer-text {
    font-size: 11.5px;
    color: #6b7280;
    line-height: 1.65;
    font-weight: 400;
}

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

    .qvs-top-row {
        flex-direction: column;
    }

    .qvs-rating-box {
        min-width: unset;
        align-self: flex-start;
    }

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

@media (max-width: 380px) {
    .qvs-btn-row {
        flex-direction: column;
    }

    .qvs-btn-primary,
    .qvs-btn-outline {
        width: 100%;
    }
}


/* ════════════════════════════════════
   SECTION WRAPPER
════════════════════════════════════ */
.ovn-section {
    width: 100%;
}

/* ── SECTION HEADING ── */
.ovn-heading {
    font-size: clamp(42px, 7vw, 62px);
    font-weight: 900;
    background: linear-gradient(90deg, #31adad 0%, #ff2d8d 55%, #c026d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.05;
    letter-spacing: -1.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.ovn-underline {
    height: 4px;
    width: 200px;
    background: linear-gradient(90deg, #31adad, #ff2d8d);
    border-radius: 4px;
    margin-bottom: 10px;
}

.ovn-sublabel {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 28px;
    letter-spacing: .2px;
}

/* ════════════════════════════════════
   MAIN CARD
════════════════════════════════════ */
.ovn-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 30px 26px;
    box-shadow:
        0 1px 4px rgba(0, 0, 0, .04),
        0 8px 32px rgba(0, 0, 0, .08);
}

/* ── CARD HEADING ── */
.ovn-card-heading {
    font-size: 15.5px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid #f3f4f6;
}

.ovn-card-heading span {
    background: linear-gradient(90deg, #31adad, #ff2d8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ════════════════════════════════════
   ITEMS GRID
════════════════════════════════════ */
.ovn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

/* ── ITEM CARD ── */
.ovn-item {
    position: relative;
    background: #fafafa;
    border: 1px solid #efefef;
    border-radius: 14px;
    padding: 18px 18px 18px 20px;
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
    cursor: default;
}

.ovn-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .09);
}

/* colored left accent bar */
.ovn-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 14px 0 0 14px;
}

.ovn-item:nth-child(1)::before {
    background: linear-gradient(180deg, #31adad, #0ea5e9);
}

.ovn-item:nth-child(2)::before {
    background: linear-gradient(180deg, #f97316, #ef4444);
}

.ovn-item:nth-child(3)::before {
    background: linear-gradient(180deg, #a855f7, #c084fc);
}

.ovn-item:nth-child(4)::before {
    background: linear-gradient(180deg, #10b981, #34d399);
}

.ovn-item:nth-child(5)::before {
    background: linear-gradient(180deg, #6366f1, #818cf8);
}

/* ── NUMBER BADGE ── */
.ovn-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -.3px;
}

.ovn-item:nth-child(1) .ovn-num {
    background: linear-gradient(135deg, #31adad, #0ea5e9);
}

.ovn-item:nth-child(2) .ovn-num {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.ovn-item:nth-child(3) .ovn-num {
    background: linear-gradient(135deg, #a855f7, #c084fc);
}

.ovn-item:nth-child(4) .ovn-num {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.ovn-item:nth-child(5) .ovn-num {
    background: linear-gradient(135deg, #6366f1, #818cf8);
}

/* ── ITEM TITLE ── */
.ovn-item-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 5px;
}

.ovn-item:nth-child(1) .ovn-item-title {
    color: #0e9f9f;
}

.ovn-item:nth-child(2) .ovn-item-title {
    color: #ea580c;
}

.ovn-item:nth-child(3) .ovn-item-title {
    color: #9333ea;
}

.ovn-item:nth-child(4) .ovn-item-title {
    color: #059669;
}

.ovn-item:nth-child(5) .ovn-item-title {
    color: #4f46e5;
}

/* ── ITEM BODY ── */
.ovn-item-body {
    font-size: 13.5px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.65;
}

/* ── FULL-WIDTH LAST ITEM ── */
.ovn-item-full {
    grid-column: 1 / -1;
    max-width: calc(50% - 7px);
}

/* ════════════════════════════════════
   DASHED DIVIDER
════════════════════════════════════ */
.ovn-dashed {
    border: none;
    border-top: 1.5px dashed #e5e7eb;
    margin: 0 0 20px;
}

/* ════════════════════════════════════
   FOOTER TEXT
════════════════════════════════════ */
.ovn-footer {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 400;
}

.ovn-footer a {
    color: #31adad;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s;
}

.ovn-footer a:hover {
    color: #ff2d8d;
}

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

    .ovn-item-full {
        max-width: 100%;
        grid-column: auto;
    }

    .ovn-card {
        padding: 22px 18px;
    }
}


/* ════════════════════════════════════
   SECTION WRAPPER
════════════════════════════════════ */
.sbs-section {
    width: 100%;
}

/* ── HEADING ── */
.sbs-heading {
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 10px;
    display: inline-block;
}

/* "Quick " — teal */
.sbs-h-teal {
    color: #31adad;
}

/* "Side-by-Side " — gray-pink blend */
.sbs-h-mid {
    background: linear-gradient(90deg, #9ca3af 0%, #d1668a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* "Specs" — pink */
.sbs-h-pink {
    color: #ff2d8d;
}

/* Gradient underline */
.sbs-underline {
    height: 4px;
    width: 320px;
    background: linear-gradient(90deg, #31adad 0%, #ff2d8d 100%);
    border-radius: 4px;
    margin-bottom: 28px;
}

/* ════════════════════════════════════
   TABLE CARD
════════════════════════════════════ */
.sbs-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 1px 4px rgba(0, 0, 0, .04),
        0 8px 32px rgba(0, 0, 0, .08);
}

/* ════════════════════════════════════
   TABLE
════════════════════════════════════ */
.sbs-table {
    width: 100%;
    border-collapse: collapse;
}

/* ── HEADER ROW ── */
.sbs-table thead tr {
    background: linear-gradient(90deg, #31adad 0%, #c084fc 50%, #ff2d8d 100%);
}

.sbs-table thead th {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    letter-spacing: .2px;
}

/* col widths */
.sbs-col-feature {
    width: 26%;
}

.sbs-col-ergo {
    width: 37%;
}

.sbs-col-comfort {
    width: 37%;
}

/* ── BODY ROWS ── */
.sbs-table tbody tr {
    border-bottom: 1px solid #f0f0f5;
    transition: background .15s;
}

.sbs-table tbody tr:last-child {
    border-bottom: none;
}

.sbs-table tbody tr:hover {
    background: #fafafa;
}

.sbs-table tbody td {
    padding: 17px 20px;
    font-size: 13.5px;
    color: #374151;
    vertical-align: middle;
    line-height: 1.5;
}

/* Feature column — bold dark */
.sbs-td-feature {
    font-weight: 600;
    color: #111827;
    font-size: 13px;
}

/* Value column — regular */
.sbs-td-val {
    font-weight: 400;
    color: #374151;
}

/* ── CHECKMARK (winner cell) ── */
.sbs-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sbs-check::before {
    content: '✓';
    color: #31adad;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── WIN highlight — teal text for winner value ── */
.sbs-win {
    color: #1f2937;
}

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

    .sbs-table thead th,
    .sbs-table tbody td {
        padding: 13px 12px;
        font-size: 12px;
    }

    .sbs-heading {
        font-size: 26px;
    }

    .sbs-underline {
        width: 200px;
    }
}


/* ════════════════════════════════════
   SECTION WRAPPER
════════════════════════════════════ */
.cls-section {
    width: 100%;
}

/* ── HEADING ── */
.cls-heading {
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 10px;
    display: block;
}

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

.cls-h-dark {
    color: #1f2937;
}

.cls-h-pink {
    color: #ff2d8d;
}

/* Gradient underline */
.cls-underline {
    height: 4px;
    width: 340px;
    background: linear-gradient(90deg, #31adad 0%, #ff2d8d 100%);
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Sub-label */
.cls-sublabel {
    font-size: 13.5px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 22px;
}

/* ════════════════════════════════════
   OUTER CARD  (light gradient bg)
════════════════════════════════════ */
.cls-outer-card {
    background: linear-gradient(145deg, #f0fffe 0%, #fdf5ff 50%, #fff0f7 100%);
    border-radius: 20px;
    padding: 22px 20px 20px;
    box-shadow:
        0 1px 4px rgba(0, 0, 0, .04),
        0 8px 28px rgba(0, 0, 0, .07);
}

/* ── OUTER CARD HEADER ── */
.cls-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.cls-card-emoji {
    font-size: 26px;
    line-height: 1;
}

.cls-card-title {
    font-size: 19px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -.3px;
}

/* ════════════════════════════════════
   INNER CARDS
════════════════════════════════════ */
.cls-inner-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cls-inner-card {
    border-radius: 14px;
    padding: 18px 18px 18px 18px;
    position: relative;
    overflow: hidden;
}

/* ── TEAL card (ErgoChair Pro) ── */
.cls-card-teal {
    background: #f0fffe;
    border: 1.5px solid #99e6e6;
}

/* decorative blob top-right */
.cls-card-teal::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(49, 173, 173, .12);
    pointer-events: none;
}

/* ── PINK card (ComfortMax Elite) ── */
.cls-card-pink {
    background: #fff0f7;
    border: 1.5px solid #ffb3d4;
}

.cls-card-pink::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 45, 141, .10);
    pointer-events: none;
}

/* ── GREEN card (Who it's ideal for) ── */
.cls-card-green {
    background: #f0fff8;
    border: 1.5px solid #86efac;
}

.cls-card-green::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, .10);
    pointer-events: none;
}

/* ── CARD INNER TOP ROW ── */
.cls-inner-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Circular check icon */
.cls-circ-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    position: relative;
    z-index: 1;
}

.cls-circ-teal {
    background: #31adad;
}

.cls-circ-pink {
    background: #ff2d8d;
}

.cls-circ-green {
    background: #10b981;
}

/* Checkmark SVG inside circle */
.cls-circ-icon svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    stroke-width: 2.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Card name label */
.cls-inner-name {
    font-size: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

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

.cls-name-pink {
    color: #ff2d8d;
}

.cls-name-green {
    color: #059669;
}

/* Ideal label inside green card */
.cls-ideal-label {
    font-size: 13px;
    font-weight: 700;
    color: #059669;
}

.cls-ideal-label .cls-ideal-emoji {
    margin-right: 4px;
}

/* Card body text */
.cls-inner-body {
    font-size: 13px;
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 500px) {
    .cls-heading {
        font-size: 26px;
    }

    .cls-underline {
        width: 220px;
    }

    .cls-outer-card {
        padding: 16px 14px;
    }
}


/* ════════════════════════════════════
   SECTION WRAPPER
════════════════════════════════════ */
.adj-section {
    width: 100%;
}

/* ── HEADING ── */
.adj-heading {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 10px;
    display: block;
    /* teal → pink gradient text */
    background: linear-gradient(90deg, #31adad 0%, #ff2d8d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient underline */
.adj-underline {
    height: 4px;
    width: 300px;
    background: linear-gradient(90deg, #31adad 0%, #ff2d8d 100%);
    border-radius: 4px;
    margin-bottom: 26px;
}

/* ════════════════════════════════════
   OUTER CARD
════════════════════════════════════ */
.adj-outer-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 1px 4px rgba(0, 0, 0, .04),
        0 10px 36px rgba(0, 0, 0, .09);
    margin-bottom: 22px;
}

/* ── GRADIENT HEADER BANNER ── */
.adj-header-banner {
    background: linear-gradient(90deg, #31adad 0%, #c026d3 50%, #ff2d8d 100%);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Lightning icon circle */
.adj-header-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adj-header-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.adj-header-title {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: .1px;
}

/* ── INNER BODY ── */
.adj-inner-body {
    padding: 22px 20px;
    background: linear-gradient(160deg, #f8fffe 0%, #fff5fb 100%);
}

/* ── 2-COL GRID ── */
.adj-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── FEATURE CARD ── */
.adj-feat-card {
    border-radius: 14px;
    padding: 20px 18px;
    position: relative;
    overflow: hidden;
}

/* Teal card — ErgoChair Pro */
.adj-feat-teal {
    background: #ffffff;
    border: 2px solid #31adad;
}

/* decorative watermark */
.adj-feat-teal::after {
    content: '⚡';
    position: absolute;
    bottom: -6px;
    right: 8px;
    font-size: 72px;
    opacity: .05;
    pointer-events: none;
    line-height: 1;
}

/* Pink card — ComfortMax Elite */
.adj-feat-pink {
    background: #ffffff;
    border: 2px solid #ff2d8d;
}

.adj-feat-pink::after {
    content: '⚡';
    position: absolute;
    bottom: -6px;
    right: 8px;
    font-size: 72px;
    opacity: .05;
    pointer-events: none;
    line-height: 1;
}

/* Card title */
.adj-feat-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
}

.adj-feat-teal .adj-feat-title {
    color: #31adad;
}

.adj-feat-pink .adj-feat-title {
    color: #ff2d8d;
}

/* Feature list */
.adj-feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.adj-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: #374151;
    line-height: 1.55;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Circle check icon */
.adj-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.adj-feat-teal .adj-check {
    border-color: #31adad;
}

.adj-feat-pink .adj-check {
    border-color: #a78bfa;
}

.adj-check svg {
    width: 10px;
    height: 10px;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.adj-feat-teal .adj-check svg {
    stroke: #31adad;
}

.adj-feat-pink .adj-check svg {
    stroke: #a78bfa;
}

/* ════════════════════════════════════
   CTA BUTTON
════════════════════════════════════ */
.adj-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #31adad 0%, #2a9898 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 18px rgba(49, 173, 173, .35);
    letter-spacing: .1px;
}

.adj-cta-btn:hover {
    opacity: .88;
    transform: translateY(-2px);
    color: #fff;
}

.adj-cta-arrow {
    font-size: 17px;
    font-weight: 700;
    transition: transform .2s;
}

.adj-cta-btn:hover .adj-cta-arrow {
    transform: translateX(3px);
}

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

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

    .adj-underline {
        width: 200px;
    }
}


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

/* ════════════════════════════════════
   ACCORDION ITEM
════════════════════════════════════ */
.acd-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, .05),
        0 4px 18px rgba(0, 0, 0, .07);
    overflow: hidden;
    transition: box-shadow .25s;
}

.acd-item:hover {
    box-shadow:
        0 2px 6px rgba(0, 0, 0, .06),
        0 8px 26px rgba(0, 0, 0, .09);
}

/* ── TRIGGER ROW ── */
.acd-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    position: relative;
}

/* left icon */
.acd-trigger-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acd-trigger-icon svg {
    width: 24px;
    height: 24px;
}

/* title */
.acd-trigger-title {
    flex: 1;
    font-size: 15.5px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

/* chevron */
.acd-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
    color: #9ca3af;
}

.acd-chevron svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* open state — rotate chevron */
.acd-item.is-open .acd-chevron {
    transform: rotate(180deg);
    color: #374151;
}

/* ── BODY (collapsible) ── */
.acd-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .32s ease;
}

.acd-item.is-open .acd-body {
    grid-template-rows: 1fr;
}

.acd-body-inner {
    overflow: hidden;
}

.acd-body-content {
    padding: 0 22px 22px;
}

/* ════════════════════════════════════
   ITEM 1 — Our Selection Criteria
════════════════════════════════════ */
.acd-criteria-text {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 10px;
}

.acd-criteria-text:last-child {
    margin-bottom: 0;
}

/* ════════════════════════════════════
   ITEM 2 — Deal-Breakers
════════════════════════════════════ */
.acd-db-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Red accent card */
.acd-db-card {
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
    border-radius: 10px;
    padding: 16px 18px;
}

.acd-db-label {
    font-size: 13.5px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 10px;
}

.acd-db-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.acd-db-list li {
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
    padding-left: 14px;
    position: relative;
}

.acd-db-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

/* ════════════════════════════════════
   ICON COLORS
════════════════════════════════════ */
/* Award / ribbon — teal */
.acd-icon-teal {
    color: #31adad;
}

/* X circle — red */
.acd-icon-red {
    color: #ef4444;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 500px) {
    .acd-trigger {
        padding: 15px 16px;
        gap: 10px;
    }

    .acd-body-content {
        padding: 0 16px 18px;
    }

    .acd-trigger-title {
        font-size: 14px;
    }
}


/* ════════════════════════════════════
   SECTION WRAPPER
════════════════════════════════════ */
.mb-section {
    width: 100%;
}

/* ── HEADING ── */
.mb-heading {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 10px;
    display: block;
}

.mb-h-teal {
    color: #31adad;
}

.mb-h-dark {
    color: #1f2937;
}

.mb-h-pink {
    color: #ff2d8d;
}

/* Gradient underline */
.mb-underline {
    height: 4px;
    width: 280px;
    background: linear-gradient(90deg, #31adad 0%, #ff2d8d 100%);
    border-radius: 4px;
    margin-bottom: 28px;
}

/* ════════════════════════════════════
   2-COL CARD GRID
════════════════════════════════════ */
.mb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ════════════════════════════════════
   GRADIENT CARD BASE
════════════════════════════════════ */
.mb-card {
    border-radius: 20px;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
}

.mb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .2);
}

/* ── CARD 1 — ErgoChair Pro — teal gradient ── */
.mb-card-teal {
    background: linear-gradient(145deg, #1d9e9e 0%, #31adad 45%, #2ecfcf 100%);
}

/* ── CARD 2 — ComfortMax Elite — pink gradient ── */
.mb-card-pink {
    background: linear-gradient(145deg, #e0186f 0%, #ff2d8d 50%, #ff6ab0 100%);
}

/* Decorative blob top-right */
.mb-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    pointer-events: none;
}

.mb-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    pointer-events: none;
}

/* ── ICON BADGE ── */
.mb-icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(4px);
}

.mb-icon-badge svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── CARD TITLE ── */
.mb-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    letter-spacing: -.3px;
    line-height: 1.2;
}

/* ── CARD BODY ── */
.mb-card-body {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .88);
    line-height: 1.75;
    font-weight: 400;
    flex: 1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

/* ── BEST FOR PILL ── */
.mb-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .30);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    align-self: flex-start;
    position: relative;
    z-index: 1;
    transition: background .2s;
}

.mb-pill:hover {
    background: rgba(255, 255, 255, .32);
}

.mb-pill svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

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

    .mb-heading {
        font-size: 26px;
    }

    .mb-underline {
        width: 200px;
    }

    .mb-card {
        padding: 22px 18px 20px;
    }
}


/* ════════════════════════════════════
   SECTION WRAPPER
════════════════════════════════════ */
.doa-section {
    width: 100%;
}

/* ── HEADING ── */
.doa-heading {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 10px;
    display: block;
}

.doa-h-teal {
    color: #31adad;
}

.doa-h-mid {
    /* "& Office" — muted gray-pink blend */
    background: linear-gradient(90deg, #9ca3af 0%, #c084a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doa-h-pink {
    color: #ff2d8d;
}

/* Gradient underline */
.doa-underline {
    height: 4px;
    width: 340px;
    background: linear-gradient(90deg, #31adad 0%, #ff2d8d 100%);
    border-radius: 4px;
    margin-bottom: 26px;
}

/* ════════════════════════════════════
   OUTER CARD
════════════════════════════════════ */
.doa-outer-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 26px 26px;
    box-shadow:
        0 1px 4px rgba(0, 0, 0, .04),
        0 8px 32px rgba(0, 0, 0, .08);
}

/* ── BODY TEXT ── */
.doa-body-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 22px;
}

/* ════════════════════════════════════
   INNER PLACEHOLDER CARD
════════════════════════════════════ */
.doa-placeholder-card {
    border-radius: 16px;
    overflow: hidden;
    /* soft teal-top → pink-bottom gradient — matches screenshot */
    background: linear-gradient(160deg,
            #d8f4f4 0%,
            #e8eeff 35%,
            #f0e0f8 65%,
            #f8d6ea 100%);
    padding: 56px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 360px;
    border: 1px solid rgba(255, 255, 255, .6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
}

/* Chair emoji */
.doa-ph-emoji {
    font-size: 52px;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .12));
}

/* Title text */
.doa-ph-title {
    font-size: 15px;
    font-weight: 700;
    color: #374151;
    text-align: center;
    margin-top: 4px;
}

/* Sub text */
.doa-ph-sub {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 400;
    text-align: center;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 560px) {
    .doa-heading {
        font-size: 26px;
    }

    .doa-underline {
        width: 220px;
    }

    .doa-outer-card {
        padding: 20px 16px;
    }

    .doa-placeholder-card {
        min-height: 260px;
        padding: 40px 16px;
    }

    .doa-ph-emoji {
        font-size: 42px;
    }

    .doa-ph-title {
        font-size: 13.5px;
    }
}


/* ══════════════════════════════════════════
   SECTION
══════════════════════════════════════════ */
.pva-section {
    width: 100%;
}

/* ── HEADING ── */
.pva-heading {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 10px;
    overflow: hidden;
}

.pva-h-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .5s ease, transform .5s cubic-bezier(.34, 1.4, .64, 1);
}

.pva-section.in-view .pva-h-word {
    opacity: 1;
    transform: translateY(0);
}

.pva-section.in-view .pva-h-word:nth-child(1) {
    transition-delay: .00s;
}

.pva-section.in-view .pva-h-word:nth-child(2) {
    transition-delay: .08s;
}

.pva-section.in-view .pva-h-word:nth-child(3) {
    transition-delay: .16s;
}

.pva-h-teal {
    color: #31adad;
}

.pva-h-dark {
    color: #1f2937;
}

.pva-h-pink {
    color: #ff2d8d;
}

/* ── GRADIENT UNDERLINE — draw animation ── */
.pva-underline {
    height: 4px;
    background: linear-gradient(90deg, #31adad, #ff2d8d);
    border-radius: 4px;
    margin-bottom: 32px;
    width: 0;
    transition: width .8s cubic-bezier(.4, 0, .2, 1) .3s;
}

.pva-section.in-view .pva-underline {
    width: 300px;
}

/* ══════════════════════════════════════════
   GRID
══════════════════════════════════════════ */
.pva-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

/* ══════════════════════════════════════════
   CARD BASE
══════════════════════════════════════════ */
.pva-card {
    border-radius: 22px;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(0, 0, 0, .16);
    /* scroll entry state */
    opacity: 0;
    transform: translateY(56px) scale(.96);
    transition:
        opacity .7s cubic-bezier(.34, 1.2, .64, 1),
        transform .7s cubic-bezier(.34, 1.2, .64, 1),
        box-shadow .3s ease;
    /* 3D tilt uses JS-applied CSS vars */
    will-change: transform;
}

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

.pva-card-teal {
    background: linear-gradient(145deg, #1d9e9e 0%, #31adad 45%, #2ecece 100%);
    transition-delay: .1s;
}

.pva-card-pink {
    background: linear-gradient(145deg, #e0186f 0%, #ff2d8d 50%, #ff6ab0 100%);
    transition-delay: .28s;
}

/* ── SHIMMER SWEEP ── */
.pva-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 35%,
            rgba(255, 255, 255, .22) 50%,
            transparent 65%);
    transform: translateX(-100%);
    pointer-events: none;
    z-index: 2;
    border-radius: 22px;
}

.pva-card.visible .pva-shimmer {
    animation: pva-shimmer-run 2.8s ease-in-out 0.6s infinite;
}

@keyframes pva-shimmer-run {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(220%);
    }
}

/* ── FLOATING PARTICLES ── */
.pva-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    pointer-events: none;
    z-index: 0;
}

.pva-orb-1 {
    width: 80px;
    height: 80px;
    bottom: 50px;
    right: 14px;
    animation: pva-orb-a 5s ease-in-out infinite;
}

.pva-orb-2 {
    width: 40px;
    height: 40px;
    top: 50px;
    left: 16px;
    animation: pva-orb-b 6.5s ease-in-out .6s infinite;
}

.pva-orb-3 {
    width: 22px;
    height: 22px;
    bottom: 24px;
    left: 52px;
    animation: pva-orb-c 4s ease-in-out 1.2s infinite;
}

.pva-orb-4 {
    width: 14px;
    height: 14px;
    top: 80px;
    right: 50px;
    animation: pva-orb-b 3.8s ease-in-out 2s infinite;
}

@keyframes pva-orb-a {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: .16;
    }

    50% {
        transform: translate(10px, -20px) scale(1.15);
        opacity: .26;
    }
}

@keyframes pva-orb-b {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: .12;
    }

    50% {
        transform: translate(-8px, -14px) scale(1.2);
        opacity: .22;
    }
}

@keyframes pva-orb-c {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: .08;
    }

    50% {
        transform: translate(6px, 12px) scale(.9);
        opacity: .18;
    }
}

/* ── TOP ROW ── */
.pva-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.pva-chair-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.3px;
    line-height: 1.2;
    /* name slide in */
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity .4s ease, transform .4s ease;
}

.pva-card.visible .pva-chair-name {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .35s;
}

/* Icon badge */
.pva-top-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pva-icon-ring 2.6s ease-out 2.2s infinite;
    position: relative;
    z-index: 1;
}

.pva-top-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes pva-icon-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .45);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, .0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .0);
    }
}

/* ── PRICE ── */
.pva-price-block {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.pva-price-main {
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    display: inline-block;
    /* pop in */
    opacity: 0;
    transform: scale(.5);
    transition: opacity .55s cubic-bezier(.34, 1.56, .64, 1), transform .55s cubic-bezier(.34, 1.56, .64, 1);
}

.pva-card.visible .pva-price-main {
    opacity: 1;
    transform: scale(1);
    transition-delay: .45s;
}

.pva-price-range {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, .72);
    opacity: 0;
    transition: opacity .4s ease;
}

.pva-card.visible .pva-price-range {
    opacity: 1;
    transition-delay: .7s;
}

.pva-tier {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity .4s ease;
}

.pva-card.visible .pva-tier {
    opacity: 1;
    transition-delay: .75s;
}

/* ── SEPARATOR — draw left to right ── */
.pva-sep {
    height: 1px;
    background: rgba(255, 255, 255, .22);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease;
}

.pva-card.visible .pva-sep {
    transform: scaleX(1);
    transition-delay: .55s;
}

/* ── FEATURES ── */
.pva-features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.pva-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .92);
    line-height: 1.4;
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity .35s ease, transform .35s ease;
}

.pva-card.visible .pva-features li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .65s;
}

.pva-card.visible .pva-features li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .75s;
}

.pva-card.visible .pva-features li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .85s;
}

.pva-card.visible .pva-features li:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .95s;
}

.pva-card.visible .pva-features li:nth-child(5) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.05s;
}

/* check circle */
.pva-chk {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 1.8px solid rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: scale(0) rotate(-30deg);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.pva-chk svg {
    width: 10px;
    height: 10px;
    stroke: #fff;
    stroke-width: 2.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pva-card.visible .pva-features li:nth-child(1) .pva-chk {
    transform: scale(1) rotate(0);
    transition-delay: .68s;
}

.pva-card.visible .pva-features li:nth-child(2) .pva-chk {
    transform: scale(1) rotate(0);
    transition-delay: .78s;
}

.pva-card.visible .pva-features li:nth-child(3) .pva-chk {
    transform: scale(1) rotate(0);
    transition-delay: .88s;
}

.pva-card.visible .pva-features li:nth-child(4) .pva-chk {
    transform: scale(1) rotate(0);
    transition-delay: .98s;
}

.pva-card.visible .pva-features li:nth-child(5) .pva-chk {
    transform: scale(1) rotate(0);
    transition-delay: 1.08s;
}

/* ── CTA BUTTON ── */
.pva-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* entry */
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity .45s cubic-bezier(.34, 1.4, .64, 1),
        transform .45s cubic-bezier(.34, 1.4, .64, 1),
        background .22s,
        color .22s,
        box-shadow .22s;
}

.pva-card.visible .pva-cta-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
}

.pva-card-teal .pva-cta-btn {
    color: #31adad;
}

.pva-card-teal .pva-cta-btn:hover {
    background: #1d9e9e;
    color: #fff;
    box-shadow: 0 6px 24px rgba(49, 173, 173, .5);
}

.pva-card-pink .pva-cta-btn {
    color: #ff2d8d;
}

.pva-card-pink .pva-cta-btn:hover {
    background: #e0186f;
    color: #fff;
    box-shadow: 0 6px 24px rgba(255, 45, 141, .5);
}

/* CTA glow pulse */
.pva-card-teal .pva-cta-btn {
    animation: pva-glow-teal 2.8s ease-in-out 2.4s infinite;
}

.pva-card-pink .pva-cta-btn {
    animation: pva-glow-pink 2.8s ease-in-out 2.8s infinite;
}

@keyframes pva-glow-teal {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(49, 173, 173, .0);
    }

    50% {
        box-shadow: 0 4px 32px rgba(49, 173, 173, .55);
    }
}

@keyframes pva-glow-pink {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(255, 45, 141, .0);
    }

    50% {
        box-shadow: 0 4px 32px rgba(255, 45, 141, .55);
    }
}

/* Ripple inside button */
.pva-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, .12);
    transform: scale(0);
    animation: pva-ripple-run .55s linear;
    pointer-events: none;
}

@keyframes pva-ripple-run {
    to {
        transform: scale(4.5);
        opacity: 0;
    }
}

.pva-cta-arrow {
    font-size: 16px;
    display: inline-block;
    transition: transform .22s;
}

.pva-cta-btn:hover .pva-cta-arrow {
    transform: translateX(4px);
}

/* ══════════════════════════════════════════
   3D TILT — applied via JS
══════════════════════════════════════════ */
.pva-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

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

    .pva-heading {
        font-size: 26px;
    }

    .pva-section.in-view .pva-underline {
        width: 200px;
    }

    .pva-price-main {
        font-size: 40px;
    }
}


/* ════════════════════════════════════
   ANIMATED GRADIENT BORDER WRAPPER
════════════════════════════════════ */
.dld-border-wrap {
    width: 100%;
    max-width: 800px;
    border-radius: 18px;
    padding: 2px;
    /* border thickness */
    background: linear-gradient(135deg, #31adad, #8b5cf6, #ff2d8d, #31adad);
    background-size: 300% 300%;
    animation: dld-border-rotate 4s linear infinite;
    box-shadow: 0 0 0 0 rgba(49, 173, 173, 0);
    /* entry */
    opacity: 0;
    transform: translateY(22px) scale(.98);
    transition: opacity .6s ease, transform .6s cubic-bezier(.34, 1.3, .64, 1);
}

.dld-border-wrap.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes dld-border-rotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ════════════════════════════════════
   SECTION
════════════════════════════════════ */
.pcs-section {
    width: 100%;
}

/* ── HEADING ── */
.pcs-heading {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.pcs-h-teal {
    color: #31adad;
}

.pcs-h-mid {
    background: linear-gradient(90deg, #9ca3af 0%, #c084a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pcs-h-pink {
    color: #ff2d8d;
}

.pcs-underline {
    height: 4px;
    width: 320px;
    background: linear-gradient(90deg, #31adad 0%, #ff2d8d 100%);
    border-radius: 4px;
    margin-bottom: 28px;
}

/* ════════════════════════════════════
   2-COL GRID
════════════════════════════════════ */
.pcs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* ════════════════════════════════════
   CARD
════════════════════════════════════ */
.pcs-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 6px 22px rgba(0, 0, 0, .07);
}

/* ── CHAIR NAME ── */
.pcs-chair-name {
    font-size: 17px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f3f4f6;
}

/* ── PROS BLOCK ── */
.pcs-pros {
    margin-bottom: 16px;
}

.pcs-section-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pcs-label-pros {
    color: #16a34a;
}

.pcs-label-cons {
    color: #dc2626;
}

.pcs-label-icon {
    font-size: 16px;
    line-height: 1;
}

/* ── LIST ── */
.pcs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pcs-list li {
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
    font-weight: 400;
    padding-left: 14px;
    position: relative;
}

.pcs-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6b7280;
    font-weight: 700;
}

/* ── CONS BLOCK ── */
.pcs-cons {
    margin-bottom: 0;
}

/* ── DASHED DIVIDER ── */
.pcs-dashed {
    border: none;
    border-top: 1.5px dashed #e5e7eb;
    margin: 16px 0;
}

/* ── BEST FOR ── */
.pcs-best-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.pcs-best-icon {
    font-size: 15px;
}

.pcs-best-text {
    font-size: 13px;
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
}

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

    .pcs-heading {
        font-size: 26px;
    }

    .pcs-underline {
        width: 220px;
    }
}


/* ════════════════════════════════════
   SECTION
════════════════════════════════════ */
.fv-section {
    width: 100%;
}

/* ── HEADING ── */
.fv-heading {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.fv-h-teal {
    color: #31adad;
}

.fv-h-pink {
    color: #ff2d8d;
}

.fv-sublabel {
    font-size: 13.5px;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 22px;
}

/* ════════════════════════════════════
   STACKED CARDS
════════════════════════════════════ */
.fv-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* border-radius: 20px; */
    overflow: hidden;
    /* box-shadow: 0 8px 40px rgba(0, 0, 0, .14); */
    margin-bottom: 18px;
}

/* ── CARD BASE ── */
.fv-card {
    padding: 30px 28px 26px;
    position: relative;
    overflow: hidden;
}

/* Card 1 — TEAL */
.fv-card-teal {
    background: linear-gradient(135deg, #1d9e9e 0%, #31adad 40%, #2dd4d4 100%);
    border-radius: 20px;
}

/* Card 2 — PINK */
.fv-card-pink {
    background: linear-gradient(135deg, #e0186f 0%, #ff2d8d 45%, #ff6ab0 100%);
    border-radius: 20px;
}

/* Decorative blobs */
.fv-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    pointer-events: none;
}

.fv-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    pointer-events: none;
}

/* ── CARD TOP ROW ── */
.fv-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.fv-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.fv-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -.3px;
    line-height: 1.2;
}

/* ── FEATURE LIST ── */
.fv-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.fv-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .92);
    line-height: 1.5;
}

/* Circle check icon */
.fv-chk {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.fv-chk svg {
    width: 11px;
    height: 11px;
    stroke: #fff;
    stroke-width: 2.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── CTA BUTTON ── */
.fv-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all .22s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    letter-spacing: .1px;
}

/* Shimmer on hover */
.fv-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .5) 50%, transparent 70%);
    transform: translateX(-130%);
}

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

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

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

.fv-card-teal .fv-cta {
    color: #31adad;
}

.fv-card-teal .fv-cta:hover {
    background: #f0fffe;
    box-shadow: 0 4px 18px rgba(49, 173, 173, .25);
}

.fv-card-pink .fv-cta {
    color: #ff2d8d;
}

.fv-card-pink .fv-cta:hover {
    background: #fff5f9;
    box-shadow: 0 4px 18px rgba(255, 45, 141, .25);
}

.fv-cta-arrow {
    display: inline-block;
    transition: transform .22s;
}

.fv-cta:hover .fv-cta-arrow {
    transform: translateX(4px);
}

/* ════════════════════════════════════
   BOTTOM BUTTONS
════════════════════════════════════ */
.fv-bottom-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fv-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, #31adad 0%, #ff2d8d 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(49, 173, 173, .30);
    transition: transform .22s, box-shadow .22s;
    letter-spacing: .1px;
}

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

.fv-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    color: #31adad;
    border: 2px solid #31adad;
    transition: all .22s;
}

.fv-btn-outline:hover {
    background: #31adad;
    color: #fff;
    transform: translateY(-2px);
}

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

.fv-btn-arrow {
    display: inline-block;
    transition: transform .22s;
}

.fv-btn-solid:hover .fv-btn-arrow,
.fv-btn-outline:hover .fv-btn-arrow {
    transform: translateX(3px);
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 500px) {
    .fv-card {
        padding: 22px 18px 20px;
    }

    .fv-card-title {
        font-size: 18px;
    }

    .fv-list li {
        font-size: 13px;
    }

    .fv-bottom-btns {
        flex-direction: column;
        align-items: flex-start;
    }
}