:root {
    --teal: #31adad;
    --teal-d: #0e8f8f;
    --pink: #ff2d8d;
    --pink-d: #d4186a;
    --white: #fff;
    --gold: #f5a623;
    --gray1: #111827;
    --gray2: #374151;
    --gray3: #6b7280;
    --gray4: #9ca3af;
    --bg: #f5f6f8;
    --grad: linear-gradient(135deg, #31adad, #ff2d8d);
    --black: #111111;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
    --radius: 12px;
    --shadow: 0 2px 16px rgba(0, 0, 0, .07);
    --shadow-md: 0 6px 28px rgba(0, 0, 0, .12);
}

/* ─── BREADCRUMB ─── */
.bc-wrap {
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    padding: 10px 0;
}

.breadcrumb {
    margin: 0;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

.breadcrumb-item a {
    color: #6b7280;
    text-decoration: none;
    font-size: 16px;
}

.breadcrumb-item a:hover {
    color: var(--teal);
}

.breadcrumb-item.active {
    color: var(--teal);
    font-weight: 500;
    font-size: 16px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #9ca3af;
    content: "›";
}

/* ─── LAYOUT ─── */
.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
    padding: 10px 0 20px;
}

/* ─── TITLE ─── */
.art-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.art-title .part1 {
    color: var(--teal);
}

.art-title .part2 {
    color: var(--pink);
}

/* ─── AUTHOR + META + WHAT CHANGED — ONE LINE ─── */
.art-meta-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.auth-sm-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}

.auth-sm-name {
    font-weight: 700;
    font-size: 13px;
    color: var(--black);
}

.meta-sep {
    color: #d1d5db;
    font-size: 13px;
}

.art-meta-bar .bi-calendar3 {
    color: var(--teal);
    font-size: 12px;
}

.meta-date {
    font-size: 12.5px;
    color: #6b7280;
}

/* What Changed pill button — INLINE */
.wc-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(49, 173, 173, .1);
    border: 1.5px solid rgba(49, 173, 173, .4);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--teal);
    cursor: pointer;
    outline: none;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    transition: background .2s, border-color .2s;
}

.wc-btn:hover {
    background: rgba(49, 173, 173, .2);
    border-color: var(--teal);
}

.wc-arrow {
    font-size: 10px;
    display: inline-block;
    transition: transform .3s;
}

/* What Changed dropdown */
.wc-content {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .3s ease, padding .3s ease, margin .3s ease;
    padding: 0 16px;
    margin-bottom: 0;
    background: #f0fafb;
    border: 1px solid rgba(49, 173, 173, .22);
    border-left: 3px solid var(--teal);
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.65;
    font-family: 'Poppins', sans-serif;
}

.wc-content.wc-open {
    max-height: 320px;
    opacity: 1;
    padding: 12px 16px;
    margin-bottom: 32px;
    display: block !important;
}

.wc-content ul {
    list-style: none;
    padding: 0;
    margin: 7px 0 0;
}

.wc-content ul li {
    padding: 2px 0 2px 14px;
    position: relative;
}

.wc-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--teal);
}

/* ─── SCROLL PROGRESS BAR ─── */
#scrollProgressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--grad);
    z-index: 9999;
    transition: width .1s linear;
    border-radius: 0 2px 2px 0;
}

/* ─── CIRCULAR PROGRESS ─── */
.circ-progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 86px;
    width: 64px;
    height: 64px;
    z-index: 900;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .14));
}

.circ-progress-wrap svg {
    transform: rotate(-90deg);
    width: 64px;
    height: 64px;
}

.circ-track {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 4;
}

.circ-fill {
    fill: none;
    stroke: url(#circGrad);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 125.66;
    stroke-dashoffset: 125.66;
    transition: stroke-dashoffset .15s linear;
}

.circ-pct-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    background: #fff;
    border-radius: 50%;
    margin: 10px;
    font-family: 'Poppins', sans-serif;
}

/* ─── HERO IMAGE ─── */
.hero-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
    /* box-shadow: var(--shadow-md); */
    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));
}

.hero-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}

.hero-img-wrap:hover img {
    transform: scale(1.02);
}

/* ─── BODY TEXT ─── */
.art-body p {
    /* color: #fff; */
    font-size: 15.5px;
    letter-spacing: 0.05rem;
}

.art-body strong {
    color: var(--teal);
    font-size: 20px;
}

.art-body {
    font-size: 17px;
    color: #fff;

}

/* ─── DISCLOSURE ─── */
.disclosure-box {
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    font-size: 13.5px;
    color: #78350f;
    margin: 20px 0 28px;
}

.disclosure-box strong {
    color: #92400e;
}

/* ─── SECTION HEADINGS — pink ─── */
.sec-h2 {
    font-size: clamp(19px, 2.2vw, 26px);
    font-weight: 700;
    color: var(--pink);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #f3f4f6;
    position: relative;
}

.sec-h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1.5px;
    width: 50px;
    height: 2.5px;
    background: var(--grad);
    border-radius: 2px;
}

.sec-h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin: 22px 0 8px;
}

/* ─── GRAD CTA ─── */
.grad-cta {
    background: var(--grad);
    border-radius: var(--radius);
    padding: 20px 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 24px 0;
    flex-wrap: wrap;
    box-shadow: 0 6px 24px rgba(49, 173, 173, .28);
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}

.grad-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(49, 173, 173, .38);
}

.grad-cta::before {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.grad-cta-text {
    font-size: 14.5px;
    font-weight: 600;
}

.btn-white-grad {
    background: #fff;
    color: var(--teal);
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 13.5px;
    white-space: nowrap;
    cursor: pointer;
    transition: background .2s, transform .2s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.btn-white-grad:hover {
    background: #f0fdfd;
    transform: translateY(-1px);
}

/* ─── FEATURE LIST ─── */
.feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: padding-left .2s;
}

.feat-list li:last-child {
    border: none;
}

.feat-list li:hover {
    padding-left: 6px;
}

.feat-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feat-label {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--black);
}

.feat-desc {
    font-size: 13.5px;
    color: #6b7280;
}

/* ─── INFO CARDS 2x2 ─── */
.cards-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0;
}

.i-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    background: linear-gradient(135deg,
            rgba(49, 173, 173, 0.06),
            rgba(255, 45, 141, 0.06));
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.i-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--teal);
}

.i-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 10px;
}

.ic-teal {
    background: rgba(49, 173, 173, .1);
    color: var(--teal);
}

.ic-pink {
    background: rgba(255, 45, 141, .1);
    color: var(--pink);
}

.ic-orange {
    background: rgba(249, 115, 22, .1);
    color: #f97316;
}

.ic-purple {
    background: rgba(124, 58, 237, .1);
    color: #7c3aed;
}

.i-card h5 {
    font-size: 18.5px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--black);
}

.i-card p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
    background: linear-gradient(135deg, rgba(49, 173, 173, .06), rgba(255, 45, 141, .04));
    border: 1px solid rgba(49, 173, 173, .18);
    border-left: 4px solid var(--teal);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin: 18px 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.65;
}

/* ─── MYTH / FACT ─── */
.myth-card {
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 14px;
    border: 1px solid;
    transition: transform .25s, box-shadow .25s;
}

.myth-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.myth-card.myth {
    border-color: rgba(239, 68, 68, .2);
    background: rgba(239, 68, 68, .04);
}

.myth-card.fact {
    border-color: rgba(49, 173, 173, .2);
    background: rgba(49, 173, 173, .04);
}

.myth-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 16.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 50px;
    margin-bottom: 7px;
}

.myth-badge.myth {
    background: rgba(239, 68, 68, .1);
    color: #dc2626;
}

.myth-badge.fact {
    background: rgba(49, 173, 173, .12);
    color: #0e7f7f;
}

.myth-card p {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
}

/* ─── CHECKLIST ─── */
.checklist-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin: 22px 0;
}

.checklist-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checklist-title i {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
}

.cl-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    transition: color .2s;
}

.cl-item:last-child {
    border: none;
}

.cl-item input[type=checkbox] {
    accent-color: var(--teal);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.cl-item:hover {
    color: var(--teal);
}

.cl-item.checked {
    text-decoration: line-through;
    color: #9ca3af;
}

/* ─── PRODUCT GRID ─── */
.prod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 20px 0;
}

.prod-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    transition: transform .25s, box-shadow .25s;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.prod-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #f3f4f6;
    display: block;
}

.prod-body {
    padding: 14px 16px;
}

.prod-label {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 3px 9px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 7px;
}

.pl-budget {
    background: rgba(49, 173, 173, .1);
    color: #0e7f7f;
}

.pl-premium {
    background: rgba(124, 58, 237, .1);
    color: #6d28d9;
}

.pl-best {
    background: rgba(245, 158, 11, .12);
    color: #b45309;
}

.pl-gaming {
    background: rgba(249, 115, 22, .1);
    color: #c2410c;
}

.prod-name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.prod-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 8px;
}

.prod-desc {
    font-size: 12.5px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.5;
}

.btn-prod {
    display: block;
    text-align: center;
    background: var(--grad);
    color: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    font-family: 'Poppins', sans-serif;
}

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

/* ─── SETUP STEPS ─── */
.setup-list {
    list-style: none;
    margin: 0;
    counter-reset: step;
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 20px;
}

.setup-item {
    counter-increment: step;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
}

.setup-item:last-child {
    border: none;
}

.step-n {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(49, 173, 173, .3);
}

.step-n::before {
    content: counter(step);
}

.step-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
    margin-bottom: 3px;
}

.step-desc {
    font-size: 16px;
    color: #6b7280;
}

/* ─── FAQ ─── */
.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 9px;
    overflow: hidden;
    transition: border-color .2s;
}

.faq-item:hover {
    border-color: var(--teal);
}

.faq-q {
    padding: 14px 18px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e7f3f3;
    transition: background .2s;
    user-select: none;
    color: #000;
}

.faq-q:hover {
    background: rgba(49, 173, 173, .04);
}

.faq-q .faq-arrow {
    color: var(--teal);
    font-size: 17px;
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-q.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    padding: 0 18px 14px;
    font-size: 15px;
    color: #262728;
    border-top: 1px solid #f3f4f6;
    background: rgba(49, 173, 173, .02);
    line-height: 1.7;
}

/* ─── ASK EXPERT ─── */
.ask-expert {
    background: linear-gradient(135deg, #fff9f5, #fff0fa);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    margin: 28px 0;
}

.ask-expert h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.ask-expert p {
    font-size: 13.5px;
    color: #6b7280;
    margin-bottom: 14px;
}

.ask-wrap {
    display: flex;
    gap: 10px;
}

.ask-inp {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 9px 13px;
    font-size: 13.5px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color .2s;
}

.ask-inp:focus {
    border-color: var(--teal);
}

.btn-ask {
    background: var(--grad);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    transition: opacity .2s, transform .2s;
}

.btn-ask:hover {
    opacity: .88;
    transform: translateY(-1px);
}

/* ─── AUTHOR BIO ─── */
.author-bio {
    display: flex;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    margin: 28px 0;
    transition: box-shadow .25s;
}

.author-bio:hover {
    box-shadow: var(--shadow);
}

.auth-av {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
}

.auth-name {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--black);
}

.auth-role {
    font-size: 12px;
    color: var(--teal);
    margin-bottom: 3px;
}

.auth-text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* ─── POLL ─── */
.poll-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin: 28px 0;
    background: #fff;
}

.poll-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.poll-title i {
    color: var(--teal);
}

.poll-q {
    font-size: 15.5px;
    color: #000;
    margin-bottom: 14px;
}

.poll-option {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 9px;
    font-size: 15.5px;
    color: #000;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
    position: relative;
    overflow: hidden;
    background-color: white;
}

.poll-option:last-child {
    margin-bottom: 0;
}

.poll-option:hover {
    border-color: var(--teal);
    background: rgba(49, 173, 173, .04);
    color: var(--teal);
}

.poll-option.selected {
    border-color: var(--teal);
    background: rgba(49, 173, 173, .08);
    color: var(--teal);
    font-weight: 600;
}

.poll-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(49, 173, 173, .08);
    transition: width .6s ease;
    z-index: 0;
    width: 0%;
}

.poll-text {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.poll-pct {
    font-size: 15px;
    font-weight: 600;
    color: var(--teal);
    opacity: 0;
    transition: opacity .3s;
}

.poll-option.voted .poll-pct {
    opacity: 1;
}

/* ═════════════════════════════════════
   Ergonomic vs Traditional Setup (SS Style)
═════════════════════════════════════ */

.setup-compare {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px 26px 22px;
    margin: 28px 0;
    box-shadow: var(--shadow);
}

/* Title */
.sc-title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 900;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.sc-erg {
    color: var(--teal);
}

.sc-vs {
    color: #9ca3af;
    font-weight: 800;
    margin: 0 6px;
}

.sc-set {
    color: var(--pink);
}

/* Slider */
.sc-slider {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f4f6;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
    user-select: none;
}

.sc-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Left overlay mask */
.sc-overlay {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, .65);
}

/* Pills */
.sc-pill {
    position: absolute;
    top: 16px;
    z-index: 5;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    line-height: 1;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .18);
}

.sc-pill-left {
    left: 16px;
    background: #111;
    color: #fff;
}

.sc-pill-right {
    right: 16px;
    background: var(--grad);
    color: #fff;
}

.sc-pill-right b {
    font-weight: 900;
}

/* Handle */
.sc-handle {
    position: absolute;
    inset: 0;
    z-index: 6;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    /* handle visuals use children */
    cursor: ew-resize;
}

.sc-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}

.sc-knob {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #111827;
    border: 1px solid rgba(0, 0, 0, .08);
}

.sc-knob i {
    font-size: 16px;
    color: #6b7280;
}

/* Cards */
.sc-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 18px;
}

.sc-card {
    border-radius: 14px;
    padding: 18px 18px 16px;
    border: 2px solid transparent;
}

.sc-good {
    border-color: rgba(49, 173, 173, .55);
    background: rgba(49, 173, 173, .06);
}

.sc-bad {
    border-color: rgba(255, 45, 141, .55);
    background: rgba(255, 45, 141, .05);
}

.sc-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sc-ic {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
}

.sc-ic-good {
    background: var(--teal);
}

.sc-ic-bad {
    background: var(--pink);
}

.sc-card-title {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
}

.sc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #334155;
    font-weight: 600;
}

.sc-good .sc-list i {
    color: var(--teal);
}

.sc-bad .sc-list i {
    color: var(--pink);
}

/* Responsive */
@media (max-width: 768px) {
    .sc-slider {
        height: 260px;
    }

    .sc-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== TRUE SPLIT slider (NO zoom, NO overlay feel) ===== */

.sc-slider {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f4f6;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
}

.sc-stage {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    overflow: hidden;
    user-select: none;
    touch-action: pan-y;
    /* vertical scroll ok, horizontal drag ok */
    transform: none !important;
    /* stop any reveal/scroll transforms */
    transition: none !important;
}

/* Both panes cover full area, but each is clipped */
.sc-pane {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    /* no zoom animation */
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    transform: none !important;
    /* hard stop zoom */
    transition: none !important;
    will-change: clip-path;
    /* smooth */
}

/* LEFT pane shows 0..pos */
.sc-left {
    background-image: var(--left);
    clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

/* RIGHT pane shows pos..100 */
.sc-right {
    background-image: var(--right);
    clip-path: inset(0 0 0 var(--pos));
}

/* divider line is exactly on split */
.sc-right::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    width: 1px;
    background: rgba(255, 255, 255, .75);
}

/* Pills */
.sc-pill {
    position: absolute;
    top: 16px;
    z-index: 5;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    line-height: 1;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .18);
    pointer-events: none;
}

.sc-pill-left {
    left: 16px;
    background: #111;
    color: #fff;
}

.sc-pill-right {
    right: 16px;
    background: var(--grad);
    color: #fff;
}

.sc-pill-right b {
    font-weight: 900;
}

/* Handle */
.sc-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    transform: translateX(-50%);
    z-index: 6;
    width: 0;
    pointer-events: none;
}

.sc-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}

.sc-knob {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(0, 0, 0, .08);
}

.sc-knob i {
    font-size: 16px;
    color: #6b7280;
}

/* Mobile */
@media(max-width:768px) {
    .sc-slider {
        height: 260px;
    }
}

/* ===== Quick Answer (Pixel-perfect) ===== */
.qa-card {
    background: #fff5f9;
    /* EXACT from screenshot */
    border: 1px solid #e5e7eb;
    /* exact border look */
    border-radius: 14px;
    /* same roundness */
    padding: 18px 22px 16px;
    margin: 22px 0 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
    font-family: 'Poppins', sans-serif;
}

.qa-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.qa-title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

/* Gradient icon exactly like screenshot */
.qa-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: relative;
    background: linear-gradient(135deg, #9cfefe, #ff268a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
}

/* Dark mute overlay to match the “greyed gradient” look */
.qa-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, .35);
}

/* inner white ring */
.qa-icon-ring {
    position: absolute;
    inset: 9px;
    /* ring size exactly */
    border: 2px solid rgba(255, 255, 255, .85);
    border-radius: 50%;
    z-index: 2;
}

/* check mark */
.qa-icon-check {
    width: 14px;
    height: 14px;
    z-index: 3;
}

.qa-icon-check path {
    fill: none;
    stroke: rgba(255, 255, 255, .92);
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* list */
.qa-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qa-li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
}

/* small gradient dot */
.qa-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    margin-top: 8px;
    /* dot vertical alignment */
    flex: 0 0 auto;
}

.qa-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #374151;
    font-weight: 500;
}

/* split label coloring */
.qa-k1 {
    color: #31adad;
    font-weight: 800;
}

.qa-k2 {
    color: #ff2d8d;
    font-weight: 800;
}

/* ===== QUICK QUESTION v2 (Screenshot UI, NO bar) ===== */
.qq2-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px 18px 16px;
    margin: 22px 0 28px;
    box-shadow: var(--shadow);
    font-family: 'Poppins', sans-serif;
}

.qq2-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.qq2-q {
    font-size: 14.5px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 14px;
}

/* option row */
.qq2-opt {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 16px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;

    transition: border-color .2s, box-shadow .2s, transform .12s;
    margin-bottom: 12px;
}

.qq2-opt:last-of-type {
    margin-bottom: 0;
}

.qq2-opt:hover {
    border-color: rgba(49, 173, 173, .45);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    transform: translateY(-1px);
}

/* LEFT SOFT FILL (this replaces progress bar) */
.qq2-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg,
            rgba(255, 45, 141, .12),
            rgba(49, 173, 173, .10));
    transition: width .7s cubic-bezier(.2, .9, .2, 1);
    z-index: 0;
}

/* content above fill */
.qq2-left,
.qq2-pct {
    position: relative;
    z-index: 1;
}

.qq2-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.qq2-label {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* percent on right */
.qq2-pct {
    font-size: 14px;
    font-weight: 800;
    color: #4b5563;
    opacity: 0;
    /* hidden before vote */
    transition: opacity .25s;
}

/* check icon */
.qq2-check {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    background: #fff;
    flex-shrink: 0;
    transition: border-color .2s, color .2s, background .2s;
}

/* voted state shows % + fill */
.qq2-box.voted .qq2-pct {
    opacity: 1;
}

.qq2-box.voted .qq2-fill {
    /* width is set by JS */
}

/* selected style (teal border + teal check) */
.qq2-opt.selected {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(49, 173, 173, .12);
}

.qq2-opt.selected .qq2-check {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(49, 173, 173, .06);
}

/* message box (Thanks for voting) */
.qq2-msg {
    margin-top: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 14px;
    background: #fff;
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
}

.qq2-msg-strong {
    font-weight: 800;
    color: var(--pink);
}

/* =========================================================
   DID YOU KNOW (same as SS) — Key Insight colors (teal/pink)
========================================================= */
.dyk-wrap {
    margin: 10px 0 18px;
}

.dyk-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff7ed;
    /* same warm bg from screenshot */
    cursor: pointer;

    font-family: 'Poppins', sans-serif;
}

.dyk-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.dyk-bulb {
    font-size: 18px;
    color: var(--pink);
    /* Key Insight pink */
    line-height: 1;
    flex: 0 0 auto;
}

.dyk-text {
    font-size: 14.5px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dyk-chev {
    font-size: 16px;
    color: #374151;
    transition: transform .22s ease;
    flex: 0 0 auto;
}

.dyk-body {
    border: 1px solid #e5e7eb;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    background: #fff7ed;
    padding: 12px 16px 14px;

    font-size: 14px;
    line-height: 1.7;
    color: #374151;
    font-family: 'Poppins', sans-serif;

    display: none;
}

.dyk-wrap.open .dyk-chev {
    transform: rotate(180deg);
}

.dyk-wrap.open .dyk-body {
    display: block;
}

/* =========================================================
   CORE FEATURES (exact SS style)
========================================================= */
.coref-wrap {
    margin: 0 0 26px;
}

.coref-title {
    font-size: 30px;
    font-weight: 900;
    color: #111827;
    margin: 0 0 18px;
    letter-spacing: -0.2px;
    font-family: 'Poppins', sans-serif;
}

.coref-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;

    padding: 18px 18px;
    margin-bottom: 18px;

    box-shadow: none;
    /* screenshot look: clean */
}

.coref-h {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    color: var(--teal);
    /* teal headings like SS */
    font-family: 'Poppins', sans-serif;
}

.coref-p {
    margin: 0;
    font-size: 15px;
    color: #374151;
    line-height: 1.75;
    font-family: 'Poppins', sans-serif;
}

/* ===== WHERE (Screenshot UI) ===== */
.where-lead {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 14px;
}

.where-match {
    margin: 14px 0 10px;
}

.wm-title {
    font-weight: 800;
    color: #111827;
    font-size: 14.5px;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}

.wm-sub {
    font-size: 12.5px;
    color: #6b7280;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

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

.wm-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 12px;
    background: #fff;
    border: 2px solid #e5e7eb;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .04);
}

.wm-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
    border-color: rgba(49, 173, 173, .45);
}

.wm-card.active {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(49, 173, 173, .12);
}

/* icon box */
.wm-ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f3f4f6;
    color: #0f172a;
}

.wm-ic i {
    font-size: 18px;
}

/* make first card icon colorful like screenshot */
.wm-card.active .wm-ic {
    background: var(--grad);
    color: #fff;
}

/* text */
.wm-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    font-family: 'Poppins', sans-serif;
}

.wm-h {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.wm-p {
    font-size: 12.5px;
    color: #6b7280;
    margin-top: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .wm-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── WHERE ROW ─── */
.usecase-grid,
.where-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin: 16px 0;
}

.uc-box {
    border-radius: 10px;
    padding: 16px 14px;
    transition: transform .22s, box-shadow .22s;
    cursor: default;
}

.uc-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.uc-box.home {
    background: rgba(49, 173, 173, .07);
    border: 1px solid rgba(49, 173, 173, .18);
}

.uc-box.office {
    background: rgba(255, 45, 141, .07);
    border: 1px solid rgba(255, 45, 141, .18);
}

.uc-box.gaming {
    background: rgba(249, 115, 22, .07);
    border: 1px solid rgba(249, 115, 22, .18);
}

.uc-box h5 {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 4px;
}

.uc-box p {
    font-size: 12.5px;
    color: #6b7280;
    margin: 0;
}

/* ─── DESKTOP TOC SIDEBAR ─── */
.toc-sticky {
    position: sticky;
    top: 76px;
}

.toc-box {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
}

.toc-head {
    background: var(--grad);
    padding: 16px 20px;
    color: #fff;
}

.toc-head h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.toc-list {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.toc-list li {
    position: relative;
}

.toc-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color .2s, background .2s, padding-left .2s;
}

.toc-list li a i {
    color: #d1d5db;
    font-size: 12px;
    transition: color .2s, transform .2s;
}

.toc-list li a:hover,
.toc-list li a.toc-active {
    color: var(--teal);
    background: rgba(49, 173, 173, .06);
    padding-left: 24px;
}

.toc-list li a:hover i,
.toc-list li a.toc-active i {
    color: var(--teal);
    transform: translateX(3px);
}

.toc-active-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--grad);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity .2s;
}

.toc-list li:has(a.toc-active) .toc-active-bar {
    opacity: 1;
}

.toc-prog-wrap {
    padding: 12px 18px 16px;
    border-top: 1px solid #f3f4f6;
}

.toc-prog-label {
    font-size: 11.5px;
    color: #9ca3af;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.toc-prog-bar {
    height: 4px;
    background: #f3f4f6;
    border-radius: 50px;
    overflow: hidden;
}

.toc-prog-fill {
    height: 100%;
    background: var(--grad);
    border-radius: 50px;
    width: 0%;
    transition: width .2s;
}

/* ─── TOC FAB — pill ─── */
.toc-fab {
    position: fixed;
    bottom: 30px;
    left: 30px;
    height: 44px;
    padding: 0 18px;
    border-radius: 50px;
    background: var(--grad);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    letter-spacing: 0.055rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 20px rgba(49, 173, 173, .4);
    z-index: 800;
    transition: transform .25s, box-shadow .25s;
    white-space: nowrap;
}

.toc-fab:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 26px rgba(49, 173, 173, .5);
}

/* ─── TOC POPUP ─── */
.toc-popup {
    position: fixed;
    bottom: 84px;
    left: 30px;
    width: 280px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .16);
    z-index: 799;
    transform: scale(0.85) translateY(20px);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), opacity .25s;
    overflow: hidden;
    border: 1px solid var(--border);
}

.toc-popup.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.toc-popup-head {
    background: var(--grad);
    padding: 14px 18px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toc-popup-head h4 {
    font-size: 14.5px;
    font-weight: 700;
    margin: 0;
}

.toc-popup-close {
    background: rgba(255, 255, 255, .2);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s;
}

.toc-popup-close:hover {
    background: rgba(255, 255, 255, .35);
}

.toc-popup-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
    max-height: 320px;
    overflow-y: auto;
}

.toc-popup-list::-webkit-scrollbar {
    width: 4px;
}

.toc-popup-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.toc-popup-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color .2s, background .2s;
}

.toc-popup-list li a i {
    color: #d1d5db;
    font-size: 11px;
}

.toc-popup-list li a:hover,
.toc-popup-list li a.toc-active {
    color: var(--teal);
    background: rgba(49, 173, 173, .06);
}

/* ─── MOBILE TOC ─── */
.mob-toc-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--teal);
    border-radius: 8px;
    background: #fff;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal);
    cursor: pointer;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    transition: background .2s;
}

.mob-toc-toggle:hover {
    background: rgba(49, 173, 173, .05);
}

.mob-toc-drawer {
    display: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 20px;
    overflow: hidden;
    background: #fff;
}

/* btn-take-quiz */
.btn-take-quiz {
    background: var(--grad);
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 22px !important;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 16px rgba(49, 173, 173, .3);
    text-decoration: none;
}

.btn-take-quiz:hover {
    opacity: .9;
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════
   SIDEBAR WIDGETS — COMPLETE PREMIUM REDESIGN
   ════════════════════════════════════════════════════════ */

.art-sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sw {
    border-radius: 20px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    transition: transform .3s cubic-bezier(.34, 1.2, .64, 1), box-shadow .3s;
}

.sw:hover {
    transform: translateY(-5px);
}

/* ══════════════════════════════
   W1 — TODAY'S DEALS
══════════════════════════════ */
.sw-deals {
    background: #fff;
    border: 1px solid #fde68a;
    box-shadow: 0 6px 28px rgba(245, 158, 11, .18);
}

.sw-deals-header {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-bottom: 1px solid #fde68a;
}

.sw-deals-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(245, 158, 11, .4);
}

.sw-deals-htxt {
    flex: 1;
}

.sw-deals-htxt strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #78350f;
}

.sw-deals-htxt {
    font-size: 11px;
    color: #b45309;
}

.sw-deals-live {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    border-radius: 50px;
    animation: livepulse 2s infinite;
}

@keyframes livepulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, .5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
}

.sw-deals-body {
    padding: 14px 18px 18px;
}

.sw-deals-off {
    background: var(--grad);
    border-radius: 12px;
    padding: 13px 16px;
    text-align: center;
    color: #fff;
    margin-bottom: 13px;
}

.sw-deals-off-pct {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.sw-deals-off-txt {
    font-size: 11.5px;
    font-weight: 600;
    opacity: .9;
    margin-top: 2px;
}

.sw-deal-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 11px;
    border-radius: 11px;
    margin-bottom: 7px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: border-color .2s, background .2s, transform .18s;
}

.sw-deal-item:last-child {
    margin-bottom: 0;
}

.sw-deal-item:hover {
    transform: translateX(4px);
}

.sw-deal-item.d1 {
    background: rgba(124, 58, 237, .05);
    border-color: rgba(124, 58, 237, .15);
}

.sw-deal-item.d2 {
    background: rgba(49, 173, 173, .05);
    border-color: rgba(49, 173, 173, .15);
}

.sw-deal-item.d3 {
    background: rgba(34, 197, 94, .05);
    border-color: rgba(34, 197, 94, .15);
}

.sw-deal-item.d1:hover {
    border-color: rgba(124, 58, 237, .4);
    background: rgba(124, 58, 237, .09);
}

.sw-deal-item.d2:hover {
    border-color: rgba(49, 173, 173, .4);
    background: rgba(49, 173, 173, .09);
}

.sw-deal-item.d3:hover {
    border-color: rgba(34, 197, 94, .4);
    background: rgba(34, 197, 94, .09);
}

.sw-deal-emoji {
    font-size: 20px;
    flex-shrink: 0;
}

.sw-deal-info {
    flex: 1;
}

.sw-deal-name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.sw-deal-price {
    font-size: 11.5px;
    color: #6b7280;
}

.sw-deal-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: .3px;
}

.sw-deals-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--grad);
    color: #fff;
    border-radius: 12px;
    padding: 11px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    margin-top: 14px;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 4px 16px rgba(49, 173, 173, .3);
}

.sw-deals-btn:hover {
    opacity: .9;
    color: #fff;
    transform: translateY(-2px);
}

/* ══════════════════════════════
   W2 — FIND YOUR PERFECT CHAIR
══════════════════════════════ */
.sw-quiz {
    background: linear-gradient(160deg, #0f172a 0%, #1a1245 60%, #0f172a 100%);
    border: 1px solid rgba(49, 173, 173, .25);
    box-shadow: 0 8px 36px rgba(15, 23, 42, .5);
    position: relative;
}

.sw-quiz::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(49, 173, 173, .2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sw-quiz::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 45, 141, .15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sw-quiz-inner {
    padding: 22px 20px;
    position: relative;
    z-index: 1;
}

.sw-quiz-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(49, 173, 173, .18);
    border: 1px solid rgba(49, 173, 173, .35);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 10.5px;
    font-weight: 700;
    color: #5eead4;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.sw-quiz-headline {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.25;
}

.sw-quiz-sub {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 16px;
}

.sw-quiz-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.sw-qstep {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 11px;
    transition: background .2s, border-color .2s;
}

.sw-qstep:hover {
    background: rgba(49, 173, 173, .12);
    border-color: rgba(49, 173, 173, .35);
}

.sw-qstep-n {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sw-qstep-t {
    font-size: 12px;
    color: #cbd5e1;
    font-weight: 500;
}

.sw-quiz-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--grad);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13.5px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(49, 173, 173, .4);
    font-family: 'Poppins', sans-serif;
    transition: opacity .2s, transform .2s;
}

.sw-quiz-btn:hover {
    opacity: .9;
    color: #fff;
    transform: translateY(-2px);
}

.sw-quiz-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    color: #475569;
    margin-top: 10px;
}

.sw-quiz-proof i {
    color: var(--teal);
}

/* ══════════════════════════════
   W3 — COMPARE PRODUCTS
══════════════════════════════ */
.sw-compare {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .08);
}

.sw-compare-head {
    background: linear-gradient(135deg, #ede9fe, #f5f3ff);
    padding: 15px 18px;
    border-bottom: 1px solid #ddd6fe;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sw-compare-head-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(124, 58, 237, .35);
}

.sw-compare-head strong {
    font-size: 14px;
    font-weight: 800;
    color: #5b21b6;
}

.sw-compare-body {
    padding: 16px 18px 18px;
}

.sw-compare-slots {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.sw-compare-slot {
    background: rgba(124, 58, 237, .05);
    border: 2px dashed rgba(124, 58, 237, .3);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .18s;
}

.sw-compare-slot:hover {
    background: rgba(124, 58, 237, .1);
    border-color: rgba(124, 58, 237, .6);
    transform: scale(1.03);
    border-style: solid;
}

.sw-compare-slot i {
    font-size: 22px;
    color: rgba(124, 58, 237, .35);
    display: block;
    margin-bottom: 4px;
}

.sw-compare-slot {
    font-size: 11px;
    font-weight: 700;
    color: #7c3aed;
}

.sw-compare-vs {
    font-size: 11px;
    font-weight: 900;
    color: #9ca3af;
    letter-spacing: 2px;
    text-align: center;
}

.sw-compare-feats {
    display: flex;
    border: 1px solid #f3f4f6;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}

.sw-cfeat {
    flex: 1;
    padding: 9px 4px;
    text-align: center;
    font-size: 10.5px;
    color: #6b7280;
    font-weight: 500;
    border-right: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.sw-cfeat:last-child {
    border-right: none;
}

.sw-cfeat i {
    color: #7c3aed;
    font-size: 14px;
}

.sw-compare-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: none;
    color: #7c3aed;
    border: 2px solid #7c3aed;
    border-radius: 12px;
    padding: 10px;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    transition: background .2s, color .2s, transform .2s;
}

.sw-compare-btn:hover {
    background: #7c3aed;
    color: #fff;
    transform: translateY(-2px);
}

/* ══════════════════════════════
   W4 — NEED HELP / CHAT
══════════════════════════════ */
.sw-chat {
    background: linear-gradient(145deg, #0c4a6e, #0369a1 60%, #0284c7);
    border: none;
    box-shadow: 0 8px 36px rgba(3, 105, 161, .45);
    position: relative;
    overflow: hidden;
}

.sw-chat::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sw-chat::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(49, 173, 173, .2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sw-chat-inner {
    padding: 20px 20px 22px;
    position: relative;
    z-index: 1;
}

.sw-chat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.sw-chat-avs {
    display: flex;
}

.sw-chat-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid rgba(255, 255, 255, .85);
    margin-right: -9px;
    flex-shrink: 0;
}

.sw-chat-av:last-child {
    margin-right: 0;
}

.sw-chat-status {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 4px 10px;
    font-size: 10.5px;
    color: #bae6fd;
    font-weight: 600;
}

.sw-chat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, .4);
    animation: onlinepulse 2s infinite;
}

@keyframes onlinepulse {

    0%,
    100% {
        box-shadow: 0 0 0 2px rgba(34, 197, 94, .4);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, .1);
    }
}

.sw-chat-title {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.sw-chat-desc {
    font-size: 12px;
    color: #bae6fd;
    line-height: 1.65;
    margin-bottom: 16px;
}

.sw-chat-stats {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 13px;
    padding: 12px 6px;
    margin-bottom: 16px;
    align-items: center;
}

.sw-cstat {
    text-align: center;
}

.sw-cstat-v {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.sw-cstat-l {
    font-size: 9.5px;
    color: #7dd3fc;
    font-weight: 600;
    margin-top: 3px;
    letter-spacing: .3px;
}

.sw-cstat-div {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, .18);
    margin: 0 auto;
}

.sw-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    background: #fff;
    color: #0369a1;
    border: none;
    border-radius: 13px;
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
    transition: transform .2s, box-shadow .2s;
}

.sw-chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    color: #0369a1;
}

.sw-chat-btn i {
    color: #0284c7;
    font-size: 16px;
}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .toc-sticky {
        display: none !important;
    }

    .mob-toc-toggle {
        display: flex;
    }

    .art-sidebar {
        order: -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .art-sidebar .sw {
        flex: 1 1 calc(50% - 11px);
        min-width: 240px;
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none;
    }

    .cards-2x2,
    .prod-grid {
        grid-template-columns: 1fr;
    }

    .usecase-grid,
    .where-row {
        grid-template-columns: 1fr;
    }

    .art-title {
        font-size: 24px;
    }

    .hero-img-wrap img {
        height: 240px;
    }

    .ask-wrap {
        flex-direction: column;
    }

    .art-sidebar {
        flex-direction: column;
    }

    .art-sidebar .sw {
        flex: 1 1 100%;
    }
}

@media(max-width:480px) {
    .page-wrap {
        padding: 0 14px;
    }

    .grad-cta {
        flex-direction: column;
        text-align: center;
    }

    .toc-fab {
        bottom: 20px;
        right: 20px;
    }

    .toc-popup {
        right: 14px;
        width: calc(100vw - 28px);
    }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-up {
    animation: fadeUp .5s ease both;
}

.delay1 {
    animation-delay: .1s;
}

.delay2 {
    animation-delay: .2s;
}

.delay3 {
    animation-delay: .3s;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .5s ease, transform .5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.sec-div {
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
    margin: 20px 0;
}

/* default: hide percent + bar */
.poll-pct {
    opacity: 0;
    transition: opacity .25s;
}

.poll-track {
    display: none;
    /* no bar line by default */
    margin-top: 10px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.poll-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--grad);
    border-radius: 999px;
    transition: width .8s cubic-bezier(.2, .85, .2, 1);
}

/* after voting: show percent + bars */
.poll-box.voted .poll-pct {
    opacity: 1;
}

.poll-box.voted .poll-track {
    display: block;
}


/* ===== WHERE BEST (Tabs + Panel) — Pixel style like screenshot ===== */

.wb-lead {
    margin: 10px 0 18px;
    font-size: 14.5px;
    color: #374151;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* mini title */
.wb-mini-title {
    font-weight: 800;
    font-size: 13.5px;
    color: #111827;
    font-family: 'Poppins', sans-serif;
}

.wb-mini-sub {
    font-size: 12.5px;
    color: #6b7280;
    margin-top: 2px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

/* tabs row */
.wb-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.wb-tab {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .04);
}

.wb-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
    border-color: rgba(49, 173, 173, .35);
}

.wb-tab.active {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(49, 173, 173, .12);
}

/* icon box */
.wb-ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0f172a;
    transition: background .2s, color .2s;
}

.wb-ic i {
    font-size: 18px;
}

/* active icon gradient like screenshot */
.wb-tab.active .wb-ic {
    background: var(--grad);
    color: #fff;
}

/* tab texts */
.wb-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.wb-h {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05rem;
}

.wb-p {
    margin-top: 4px;
    font-size: 12.5px;
    font-weight: 600;
    color: #302e2e;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05rem;
}

/* panels */
.wb-panel {
    display: none;
}

.wb-panel.show {
    display: block;
}

/* main panel card */
.wb-panel-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 18px 18px 16px;
}

.wb-panel-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.wb-panel-ico {
    color: var(--teal);
    font-size: 18px;
}

.wb-panel-title {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.3px;
    font-family: 'Poppins', sans-serif;
}

/* gradient-ish heading words */
.wb-grad-teal {
    color: var(--teal);
}

.wb-grad-pink {
    color: var(--pink);
}

.wb-grad-gray {
    color: #9ca3af;
}

.wb-panel-text {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.7;
    margin: 8px 0 14px;
    font-family: 'Poppins', sans-serif;
}

/* red flag box */
.wb-redflag {
    background: rgb(255 152 152 / 8%);
    border: 1px solid rgba(239, 68, 68, .25);
    border-radius: 10px;
    padding: 12px 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.wb-rf-ic {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, .12);
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 1px;
}

.wb-rf-txt {
    font-size: 14px;
    line-height: 1.6;
    color: #b91c1c;
    font-family: 'Poppins', sans-serif;
}

.wb-rf-txt b {
    font-weight: 900;
}

/* bottom note (pink tint) */
.wb-note {
    margin-top: 16px;
    background: linear-gradient(135deg, rgba(49, 173, 173, .06), rgba(255, 45, 141, .10));
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 10px;
    padding: 14px 14px;
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.wb-note-teal {
    color: var(--teal);
    font-weight: 900;
}

.wb-note-pink {
    color: var(--pink);
    font-weight: 900;
}

.wb-note-gray {
    color: #9ca3af;
    font-weight: 900;
}

/* responsive */
@media (max-width: 768px) {
    .wb-tabs {
        grid-template-columns: 1fr;
    }

    .wb-panel-title {
        font-size: 19px;
    }
}

/* Gradient text (like navbar brand) */
.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Active tab subtle gradient background */
.wb-tab.active {
    border-color: var(--teal);
    background: linear-gradient(135deg,
            rgba(49, 173, 173, 0.08),
            rgba(255, 45, 141, 0.08));
    box-shadow: 0 0 0 3px rgba(49, 173, 173, .12);
}

/* Active panel card background same subtle gradient */
.wb-panel.show .wb-panel-card {
    background: linear-gradient(135deg,
            rgba(49, 173, 173, 0.06),
            rgba(255, 45, 141, 0.06));
    border: 1px solid rgba(0, 0, 0, .06);
}

/* ===== Do you know? (Info callout like SS) ===== */
.didyouknow {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(59, 130, 246, .06);
    /* light blue */
    border: 1px solid rgba(59, 130, 246, .25);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
    margin: 18px 0;
    font-family: 'Poppins', sans-serif;
}

.dyk-ic {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2563eb;
    margin-top: 2px;
}

.dyk-ic i {
    font-size: 18px;
}

.dyk-txt {
    flex: 1;
}

.dyk-title {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 6px;
}

.dyk-do {
    color: var(--teal);
}

.dyk-know {
    color: var(--pink);
}

.dyk-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #334155;
}

/* ===== WHO SHOULD USE (SS style) ===== */
.who-wrap {
    font-family: 'Poppins', sans-serif;
    margin-top: 14px;
}

.who-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* item card */
.who-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: linear-gradient(135deg,
            rgba(49, 173, 173, 0.06),
            rgba(255, 45, 141, 0.06));
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .06);
}

.who-n {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    background: var(--grad);
    box-shadow: 0 10px 22px rgba(49, 173, 173, .18);
}

.who-h {
    font-weight: 700;
    color: #0f172a;
    font-size: 20px;
    margin-bottom: 4px;
    letter-spacing: 0.05rem;
}

.who-p {
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
}

/* ===== Pro Tip box ===== */
.who-tip {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(49, 173, 173, .08), rgba(255, 45, 141, .10));
    border: 1px solid rgba(255, 45, 141, .20);
    border-left: 4px solid var(--teal);
    box-shadow: 0 2px 14px rgba(0, 0, 0, .05);
}

.who-tip-ic {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(49, 173, 173, .12);
    border: 1px solid rgba(49, 173, 173, .22);
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 1px;
}

.who-tip-h {
    font-weight: 700;
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 4px;
}

.who-tip-p {
    margin: 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.6;
}

/* ===== Bottom CTA gradient ===== */
.who-cta {
    margin-top: 18px;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(49, 173, 173, .85), rgba(255, 45, 141, .85));
    box-shadow: 0 12px 34px rgba(49, 173, 173, .22);
    color: #fff;
    overflow: hidden;
}

.who-cta-top {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.who-cta-ic {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.who-cta-h {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 4px;
}

.who-cta-p {
    font-size: 16px;
    color: rgba(255, 255, 255, .92);
    line-height: 1.55;
}

.who-cta-btn {
    display: inline-block;
    background: #ffffff;
    color: var(--teal);
    font-weight: 800;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
    transition: transform .2s ease, opacity .2s ease;
}

.who-cta-btn:hover {
    transform: translateY(-2px);
    opacity: .95;
    color: var(--teal);
}

/* ===== Key Features That Matter (SS style) ===== */
.kf-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
    margin: 8px 0 18px;
}

.kf-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* each row */
.kf-item {
    display: grid;
    grid-template-columns: 4px 1fr;
    /* thin bar */
    gap: 18px;
    align-items: start;
}

/* bar */
.kf-bar {
    width: 4px;
    border-radius: 999px;
    height: 100%;
    background: var(--teal);
}

/* content */
.kf-content h4 {
    margin: 0 0 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.03rem;
}

.kf-content p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    line-height: 1.7;
    color: #36383b;
    max-width: 780px;
    /* SS-like line width */
}

/* alternating colors (teal/pink like SS) */
.kf-item.kf-teal .kf-bar {
    background: var(--teal);
}

.kf-item.kf-pink .kf-bar {
    background: var(--pink);
}

/* responsive spacing */
@media(max-width:768px) {
    .kf-item {
        gap: 14px;
    }

    .kf-content h4 {
        font-size: 15.5px;
    }

    .kf-content p {
        font-size: 13px;
    }
}

/* ===== Real Reader Experience Section ===== */

.reader-exp {
    position: relative;
    background: rgba(59, 130, 246, 0.08);
    /* light blue */
    border-radius: 10px;
    padding: 18px 20px;
    margin: 22px 0;
    font-family: 'Poppins', sans-serif;
}

/* left accent bar */
.reader-exp::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    border-radius: 10px 0 0 10px;
    background: #3b82f6;
    /* blue */
}

/* text */
.reader-text {
    margin: 0 0 10px;
    font-size: 14.5px;
    line-height: 1.7;
    color: #334155;
}

.reader-text strong {
    font-weight: 800;
    color: #1e293b;
}

/* link */
.reader-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
    transition: opacity .2s ease;
}

.reader-link:hover {
    opacity: 0.75;
}

/* ===== Quick Buying Tips Checklist (Pixel Perfect v2) ===== */

.qb-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 18px 16px;
    margin: 14px 0 18px;
    box-shadow: none;
    /* SS me flat clean look */
    font-family: 'Poppins', sans-serif;
}

.qb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 6px 12px;
    border-bottom: 1px solid #eef2f7;
    margin-bottom: 12px;
}

.qb-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.2px;
}

.qb-count {
    min-width: 52px;
    text-align: center;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    background: var(--grad);
    line-height: 1;
}

.qb-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* each row */
.qb-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

.qb-item:hover {
    border-color: #d1d5db;
}

/* hide native checkbox */
.qb-check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* left icon circle */
.qb-radio {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
    background: #fff;
    transition: all .18s ease;
}

/* check icon hidden by default */
.qb-tick {
    font-size: 11px;
    line-height: 1;
    color: #fff;
    opacity: 0;
    transform: scale(.6);
    transition: opacity .18s ease, transform .18s ease;
}

/* text */
.qb-main {
    display: block;
    font-size: 16px !important;
    font-weight: 600;
    color: #111827 !important;
    letter-spacing: -0.2px;
    line-height: 1.2;
}

.qb-sub {
    display: block;
    margin-top: 6px;
    font-size: 14px !important;
    color: #3e444d !important;
    font-weight: 500;
    letter-spacing: -0.1px;
    line-height: 1.35;
}

/* ===== SELECTED STATE (matches SS) ===== */
.qb-item:has(.qb-check:checked) {
    border-color: var(--teal);
    background: rgba(49, 173, 173, .06);
}

.qb-item:has(.qb-check:checked) .qb-radio {
    border-color: var(--teal);
    background: var(--teal);
}

.qb-item:has(.qb-check:checked) .qb-tick {
    opacity: 1;
    transform: scale(1);
}

.qb-item:has(.qb-check:checked) .qb-main {
    color: var(--teal);
}

/* bottom gradient button */
.qb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 470px;
    margin: 12px auto 0;
    padding: 5px 16px;
    border-radius: 10px;
    background: var(--grad);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.1px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(49, 173, 173, .22);
    transition: transform .2s, opacity .2s;
}

.qb-btn:hover {
    transform: translateY(-2px);
    opacity: .95;
    color: #fff;
}

@media(max-width:768px) {
    .qb-wrap {
        padding: 16px;
    }

    .qb-item {
        padding: 14px;
    }

    .qb-btn {
        max-width: 100%;
    }
}


/* ===== Recommended Picks (Pixel Perfect) ===== */

.rp-block {
    margin-top: 14px;
}

.rp-subhead {
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    font-weight: 600;
    color: var(--teal);
    margin: 10px 0 10px;
}

.rp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

/* ================================
   PIXEL PERFECT CARDS (Screenshot)
   Paste this at the END of CSS
================================== */

/* grid */
.rp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    /* screenshot gap */
}

/* card */
.rp-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 20px 18px;
    /* screenshot padding */
    font-family: 'Poppins', sans-serif;
}

/* top pills */
.rp-pill {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.1px;
    color: #fff;
    background: linear-gradient(90deg, #31adad, #ff2d8d);
    /* pill gradient in SS */
    margin-bottom: 14px;
}

/* title */
.rp-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #111827;
    margin: 0px 0 10px;
    line-height: 1.18;
}

/* rating row */
.rp-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
}

/* stars */
.rp-stars {
    display: inline-flex;
    gap: 2px;
    font-size: 20px;
    line-height: 1;
    color: #f5b301;
    /* warm yellow like SS */
}

.rp-stars i {
    transform: translateY(-0.5px);
}

/* score text */
.rp-score {
    font-size: 14px;
    font-weight: 600;
    color: #525254;
    letter-spacing: -0.1px;
}

/* label + value layout */
.rp-row {
    display: block;
    margin: 12px 0;
}

.rp-k {
    font-size: 15px;
    font-weight: 500;
    color: rgb(74 86 101);
    margin-bottom: 6px;
    letter-spacing: -0.15px;
    line-height: 1.2;
}

.rp-v {
    font-size: 15px;
    font-weight: 500;
    color: #1e2939;
    line-height: 1.55;
    letter-spacing: -0.1px;
    margin: 0;
}

.rp-btn i {
    font-size: 14px;
    opacity: .95;
}

/* ===== Desk cards (top gradient bar) */
.rp-card-topgrad {
    position: relative;
    padding-top: 56px;
    /* room for top bar */
    overflow: hidden;
}

/* desk pill inside (small white) */
.rp-pill-soft {
    position: absolute;
    top: 10px;
    left: 14px;
    height: 24px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* desk title color mix (teal + muted) */
.rp-name-teal {
    font-weight: 700;
    font-size: 1.4rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    margin-top: 40px;
}

/* desk rating score parentheses style */
.rp-card-topgrad .rp-score {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}

/* like/warn lines */
.rp-row-like .rp-k,
.rp-row-warn .rp-k {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* responsive */
@media (max-width: 900px) {
    .rp-grid {
        grid-template-columns: 1fr;
    }
}

/* desk cards extra styling */
.rp-card-topgrad {
    padding-top: 18px;
    overflow: hidden;
}

.rp-topbar {
    position: absolute;
    inset: 0 0 auto 0;
    height: 45px;
    background: var(--grad);
    border-radius: 12px 12px 0 0;
    opacity: .95;
}

/* like + warn rows */
.rp-row-like .rp-k,
.rp-row-warn .rp-k {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rp-ok {
    color: #10b981;
    font-size: 20px;
}

.rp-warn {
    color: #f97316;
    font-size: 20px;
}

/* button */
.rp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--grad);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.1px;
    box-shadow: 0 10px 26px rgba(49, 173, 173, .18);
    transition: transform .18s ease, opacity .18s ease;
}

.rp-btn:hover {
    transform: translateY(-2px);
    opacity: .96;
    color: #fff;
}

/* bottom deals box */
.rp-deals {
    margin-top: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(49, 173, 173, .08), rgba(255, 45, 141, .08));
    padding: 20px 18px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.rp-deals-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.2px;
    margin-bottom: 6px;
}

.rp-deals-sub {
    font-size: 15.5px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 14px;
}

.rp-deals-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--grad);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 10px 26px rgba(49, 173, 173, .18);
    transition: transform .18s ease, opacity .18s ease;
}

.rp-deals-btn:hover {
    transform: translateY(-2px);
    opacity: .96;
    color: #fff;
}

/* responsive */
@media(max-width: 900px) {
    .rp-grid {
        grid-template-columns: 1fr;
    }

    .rp-row {
        grid-template-columns: 96px 1fr;
    }
}

.poll-footer {
    color: black;
}

.fs-16px {
    font-size: 16px;
}

.arrow-size {
    font-size: 28px;
}

.rp-deals-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 18px;
    border-radius: 10px;
    background: var(--grad);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 10px 26px rgba(49, 173, 173, .18);
    transition: transform .18s ease, opacity .18s ease;
}

.rp-deals-arrow-btn:hover {
    transform: translateY(-2px);
    opacity: .96;
    color: #fff;
}

.rp-arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    width: 100%;
    padding: 2px 14px;
    border-radius: 10px;
    background: var(--grad);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.1px;
    box-shadow: 0 10px 26px rgba(49, 173, 173, .18);
    transition: transform .18s ease, opacity .18s ease;
}

.rp-arrow-btn:hover {
    transform: translateY(-2px);
    opacity: .96;
    color: #fff;
}


/* =========================
   In Summary (pixel style)
========================= */
.sum-wrap {
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px 24px 20px;
    background: linear-gradient(135deg, rgba(49, 173, 173, .08), rgba(255, 45, 141, .08));
    box-shadow: 0 6px 24px rgba(17, 24, 39, .06);
    font-family: 'Poppins', sans-serif;
    margin-top: 20px;
}

.sum-title {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #111827;
}

.sum-p {
    margin: 0 0 10px;
    font-size: 16px !important;
    line-height: 1.7;
    font-weight: 500;
    color: #374151;
    max-width: 980px;
}

.sum-p2 {
    margin-top: 16px;
    margin-bottom: 16px;
}

.sum-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.sum-btn {
    height: 50px;
    padding: 0 25px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.12px;
    text-decoration: none;
    transition: transform .16s ease, filter .16s ease;
}

.sum-btn-grad {
    background: linear-gradient(90deg, #31adad, #ff2d8d);
    color: #fff;
    box-shadow: 0 12px 26px rgba(17, 24, 39, .10);
}

.sum-btn-grad:hover {
    transform: translateY(-2px);
    filter: brightness(.98);
    color: #fff;
}

.sum-btn-outline {
    background: #fff;
    color: #111827;
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 22px rgba(17, 24, 39, .05);
}

.sum-btn-outline:hover {
    transform: translateY(-2px);
    filter: brightness(.99);
    color: #111827;
}


/* =========================
   Ask the Expert (pixel)
========================= */
.expert-wrap {
    margin-top: 26px;
    border-radius: 16px;
    padding: 26px 26px 22px;
    background: linear-gradient(135deg, rgba(49, 173, 173, .92), rgba(255, 45, 141, .92));
    box-shadow: 0 18px 44px rgba(17, 24, 39, .18);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.expert-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.expert-ico {
    font-size: 34px;
    line-height: 1;
    opacity: .95;
}

.expert-title {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.expert-sub {
    margin: 10px 0 18px;
    font-size: 16px !important;
    line-height: 1.8;
    font-weight: 500;
    opacity: .95;
    max-width: 980px;
}

/* form block spacing */
.expert-form {
    margin-top: 10px;
}

.expert-label {
    display: block;
    font-size: 15px !important;
    font-weight: 600;
    letter-spacing: -0.1px;
    margin-bottom: 10px;
    opacity: .98;
}

/* textarea */
.expert-textarea {
    width: 100%;
    min-height: 86px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .16);
    color: #fff;
    padding: 14px 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
    outline: none;
    resize: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.expert-textarea::placeholder {
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
}

.expert-textarea:focus {
    border-color: rgba(255, 255, 255, .55);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .14);
}

/* button */
.expert-btn {
    margin-top: 14px;
    height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    border: 0;
    background: #fff;
    color: var(--teal);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(17, 24, 39, .20);
    transition: transform .16s ease, filter .16s ease;
}

.expert-btn:hover {
    transform: translateY(-2px);
    filter: brightness(.98);
}

.expert-foot {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 600;
    opacity: .85;
}

/* responsive */
@media (max-width: 700px) {
    .sum-actions {
        gap: 10px;
    }

    .expert-title {
        font-size: 28px;
    }
}


/* ═══════════════════════════════════════════
   ADS — Custom Image Ad Placements
   Append this at the END of where-why.css
═══════════════════════════════════════════ */

/* ── SHARED ── */
.ad-label {
    display: block;
    text-align: center;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9ca3af;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
}

.ad-banner-link {
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
}

/* image fills container */
.ad-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.ad-banner-link:hover .ad-banner-img {
    transform: scale(1.025);
}

/* overlay text on banner */
.ad-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .15) 100%);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 36px;
    pointer-events: none;
}

.ad-banner-badge {
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.ad-banner-cta-text {
    font-size: clamp(14px, 1.6vw, 20px);
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    flex: 1;
}

.ad-banner-btn {
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(49, 173, 173, .4);
}

/* ══════════════════════════════════════════
   1. HEADER BANNER AD — min 1200px wide × 350px tall
══════════════════════════════════════════ */
.ad-header-banner-wrap {
    /* background: #0f172a; */
    padding: 12px 0;
    /* border-bottom: 1px solid #1e293b; */
}

.ad-header-banner-wrap .page-wrap {
    max-width: 970px;
}

.ad-banner-1200 {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .35);
}

@media (max-width: 900px) {
    .ad-banner-1200 {
        height: 220px;
    }

    .ad-banner-overlay {
        padding: 0 20px;
        gap: 10px;
    }

    .ad-banner-btn {
        display: none;
    }
}

@media (max-width: 600px) {
    .ad-banner-1200 {
        height: 160px;
    }

    .ad-banner-cta-text {
        font-size: 13px;
    }
}

/* ══════════════════════════════════════════
   2. IN-ARTICLE BANNER AD
══════════════════════════════════════════ */
.ad-in-article-wrap {
    margin: 28px 0;
    clear: both;
}

.ad-in-article-banner {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(0, 0, 0, .13);
}

.ad-in-article-banner .ad-banner-overlay {
    padding: 0 22px;
    gap: 12px;
    background: linear-gradient(90deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .1) 100%);
}

.ad-in-article-banner .ad-banner-cta-text {
    font-size: 15px;
}

.ad-in-article-banner .ad-banner-btn {
    font-size: 12px;
    padding: 8px 16px;
}

@media (max-width: 600px) {
    .ad-in-article-banner {
        height: 130px;
    }

    .ad-in-article-banner .ad-banner-btn {
        display: none;
    }
}

/* ══════════════════════════════════════════
   3. SIDEBAR 3 FORMATS (Format A/B/C)
══════════════════════════════════════════ */
.sw-ad {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    transition: transform .3s cubic-bezier(.34, 1.2, .64, 1), box-shadow .3s;
}

.sw-ad:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .10);
}

.sw-ad-inner {
    padding: 10px;
    display: flex;
    justify-content: center;
}

/* Shared placeholder for sidebar ad slots */
.ad-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1.5px dashed #d1d5db;
    border-radius: 6px;
    color: #9ca3af;
    font-size: 10.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    width: 280px;
    max-width: 100%;
}

.ad-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px,
            rgba(0, 0, 0, .025) 6px, rgba(0, 0, 0, .025) 12px);
}

.ad-placeholder span {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .75);
    padding: 3px 9px;
    border-radius: 4px;
    font-size: 10px;
    color: #6b7280;
}

/* Format A — 300×250 */
.sw-ad-square .ad-placeholder {
    height: 250px;
}

/* Format B — 300×100 */
.sw-ad-strip .ad-placeholder {
    height: 100px;
}

/* Format C — 300×600 */
.sw-ad-tall .ad-placeholder {
    height: 600px;
}

/* ── 10 SIDEBAR WIDGET SLOTS ── */
.sw-ad-1 .ad-placeholder {
    height: 250px;
}

.sw-ad-2 .ad-placeholder {
    height: 100px;
}

.sw-ad-3 .ad-placeholder {
    height: 250px;
}

.sw-ad-4 .ad-placeholder {
    height: 250px;
}

.sw-ad-5 .ad-placeholder {
    height: 600px;
}

.sw-ad-6 .ad-placeholder {
    height: 250px;
}

.sw-ad-7 .ad-placeholder {
    height: 150px;
}

.sw-ad-8 .ad-placeholder {
    height: 250px;
}

.sw-ad-9 .ad-placeholder {
    height: 300px;
}

.sw-ad-10 .ad-placeholder {
    height: 250px;
}

/* ══════════════════════════════════════════
   4. SIDEBAR SCROLL + STICKY LAST WIDGET
══════════════════════════════════════════ */

/* Sidebar becomes a flex column, not sticky itself */
.art-sidebar {
    /* override position:sticky so the column itself scrolls */
    position: relative !important;
    top: auto !important;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-self: flex-start;
}

/* Scrollable chunk — holds slots 1-9 + existing widgets */
.art-sidebar-scroll {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Slot 10 — stays fixed as you scroll (sticky) */
.sw-ad-sticky {
    position: sticky;
    top: 20px;
    z-index: 10;
    /* override the hover lift so it doesn't jump when sticky */
    transition: box-shadow .3s;
}

.sw-ad-sticky:hover {
    transform: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}

/* ═══════════════════════════════════════════
   ADS — Custom Image Ad Placements
   Append this at the END of where-why.css
═══════════════════════════════════════════ */

/* ── SHARED ── */
.ad-label {
    display: block;
    text-align: center;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9ca3af;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
}

.ad-banner-link {
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
}

/* image fills container */
.ad-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.ad-banner-link:hover .ad-banner-img {
    transform: scale(1.025);
}

/* overlay text on banner */
.ad-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .15) 100%);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 36px;
    pointer-events: none;
}

.ad-banner-badge {
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.ad-banner-cta-text {
    font-size: clamp(14px, 1.6vw, 20px);
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    flex: 1;
}

.ad-banner-btn {
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(49, 173, 173, .4);
}

/* ══════════════════════════════════════════
   1. HEADER BANNER AD — min 1200px wide × 350px tall
══════════════════════════════════════════ */
.ad-header-banner-wrap {
    padding: 12px 0;
}

@media (max-width: 900px) {
    .ad-banner-1200 {
        height: 220px;
    }

    .ad-banner-overlay {
        padding: 0 20px;
        gap: 10px;
    }

    .ad-banner-btn {
        display: none;
    }
}

@media (max-width: 600px) {
    .ad-banner-1200 {
        height: 160px;
    }

    .ad-banner-cta-text {
        font-size: 13px;
    }
}

/* ══════════════════════════════════════════
   2. IN-ARTICLE BANNER AD
══════════════════════════════════════════ */
.ad-in-article-wrap {
    margin: 28px 0;
    clear: both;
}

.ad-in-article-banner {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(0, 0, 0, .13);
}

.ad-in-article-banner .ad-banner-overlay {
    padding: 0 22px;
    gap: 12px;
    background: linear-gradient(90deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .1) 100%);
}

.ad-in-article-banner .ad-banner-cta-text {
    font-size: 15px;
}

.ad-in-article-banner .ad-banner-btn {
    font-size: 12px;
    padding: 8px 16px;
}

@media (max-width: 600px) {
    .ad-in-article-banner {
        height: 130px;
    }

    .ad-in-article-banner .ad-banner-btn {
        display: none;
    }
}

/* ══════════════════════════════════════════
   3. SIDEBAR 3 FORMATS (Format A/B/C)
══════════════════════════════════════════ */
.sw-ad {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    transition: transform .3s cubic-bezier(.34, 1.2, .64, 1), box-shadow .3s;
}

.sw-ad:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .10);
}

.sw-ad-inner {
    padding: 10px;
    display: flex;
    justify-content: center;
}

/* Shared placeholder for sidebar ad slots */
.ad-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1.5px dashed #d1d5db;
    border-radius: 6px;
    color: #9ca3af;
    font-size: 10.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    width: 280px;
    max-width: 100%;
}

.ad-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px,
            rgba(0, 0, 0, .025) 6px, rgba(0, 0, 0, .025) 12px);
}

.ad-placeholder span {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .75);
    padding: 3px 9px;
    border-radius: 4px;
    font-size: 10px;
    color: #6b7280;
}

/* Format A — 300×250 */
.sw-ad-square .ad-placeholder {
    height: 250px;
}

/* Format B — 300×100 */
.sw-ad-strip .ad-placeholder {
    height: 100px;
}

/* Format C — 300×600 */
.sw-ad-tall .ad-placeholder {
    height: 600px;
}

/* ── 10 SIDEBAR WIDGET SLOTS ── */
.sw-ad-1 .ad-placeholder {
    height: 250px;
}

.sw-ad-2 .ad-placeholder {
    height: 100px;
}

.sw-ad-3 .ad-placeholder {
    height: 250px;
}

.sw-ad-4 .ad-placeholder {
    height: 250px;
}

.sw-ad-5 .ad-placeholder {
    height: 600px;
}

.sw-ad-6 .ad-placeholder {
    height: 250px;
}

.sw-ad-7 .ad-placeholder {
    height: 150px;
}

.sw-ad-8 .ad-placeholder {
    height: 250px;
}

.sw-ad-9 .ad-placeholder {
    height: 300px;
}

.sw-ad-10 .ad-placeholder {
    height: 250px;
}

.art-sidebar {
    position: sticky !important;
    top: 20px !important;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-self: flex-start;
}

#sidebarLastItem {
    transition: box-shadow 0.3s;
}

/* Content grid align */
.content-grid {
    align-items: start !important;
}

/* Mobile: disable everything */
@media (max-width: 1024px) {
    .art-sidebar {
        position: relative !important;
        top: auto !important;
    }

    #sidebarLastItem {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: auto !important;
    }
}


/* ════════════════════════════════════
   MAIN CARD
════════════════════════════════════ */
.dld-card {
    background: linear-gradient(135deg, #f4fffe 0%, #fdf6ff 50%, #fff2f8 100%);
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.dld-border-wrap:hover .dld-card {
    transform: translateY(-1px);
}

/* ── BACKGROUND SHIMMER SWEEP ── */
.dld-bg-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 255, 255, .45) 50%,
            transparent 70%);
    transform: translateX(-130%);
    pointer-events: none;
    z-index: 0;
    animation: dld-sweep 4s ease-in-out 1.2s infinite;
}

@keyframes dld-sweep {

    0%,
    70%,
    100% {
        transform: translateX(-130%);
    }

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

/* ── FLOATING PARTICLES ── */
.dld-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.dld-p1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(49, 173, 173, .10) 0%, transparent 70%);
    top: -20px;
    right: 60px;
    animation: dld-orb 6s ease-in-out infinite;
}

.dld-p2 {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(255, 45, 141, .08) 0%, transparent 70%);
    bottom: -10px;
    right: 180px;
    animation: dld-orb 4.5s ease-in-out 1s infinite;
}

.dld-p3 {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(139, 92, 246, .08) 0%, transparent 70%);
    top: 10px;
    right: 220px;
    animation: dld-orb 5s ease-in-out 2s infinite;
}

@keyframes dld-orb {

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

    50% {
        transform: translate(-8px, -10px) scale(1.15);
    }
}

/* ════════════════════════════════════
   ICON
════════════════════════════════════ */
.dld-icon-wrap {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.dld-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #31adad 0%, #ff2d8d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(49, 173, 173, .30);
    animation: dld-float 3.8s ease-in-out infinite;
    transition: transform .2s;
}

.dld-icon:hover {
    transform: scale(1.12) rotate(-5deg);
}

@keyframes dld-float {

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

    33% {
        transform: translateY(-5px) rotate(3deg);
    }

    66% {
        transform: translateY(-3px) rotate(-2deg);
    }
}

/* Ping ring around icon */
.dld-icon-ring {
    position: absolute;
    inset: -5px;
    border-radius: 18px;
    border: 1.5px solid rgba(49, 173, 173, .35);
    animation: dld-ping 2.5s ease-out 1.5s infinite;
    pointer-events: none;
}

@keyframes dld-ping {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* ════════════════════════════════════
   CONTENT
════════════════════════════════════ */
.dld-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

/* ── TOP ROW ── */
.dld-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.dld-title {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    background: linear-gradient(90deg, #1f2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Live badge */
.dld-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #b45309;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 50px;
    animation: dld-badge-pulse 3s ease-in-out infinite;
}

@keyframes dld-badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, .0);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(245, 158, 11, .15);
    }
}

.dld-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f59e0b;
    animation: dld-blink 1.4s ease-in-out infinite;
}

@keyframes dld-blink {

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

    50% {
        opacity: .2;
        transform: scale(.7);
    }
}

/* Savings counter badge */
.dld-savings {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, rgba(49, 173, 173, .12), rgba(255, 45, 141, .08));
    border: 1px solid rgba(49, 173, 173, .25);
    color: #0e9f9f;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 50px;
    margin-left: auto;
}

.dld-savings-num {
    font-weight: 900;
    font-size: 11px;
}

/* ── BODY TEXT ── */
.dld-text {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 13px;
    font-weight: 400;
}

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

.dld-text a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: #ff2d8d;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.dld-text a:hover {
    color: #ff2d8d;
}

.dld-text a:hover::after {
    transform: scaleX(1);
}

/* ── PILLS ── */
.dld-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.dld-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .2s cubic-bezier(.34, 1.4, .64, 1), box-shadow .2s;
}

/* Pill shimmer on hover */
.dld-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, .4) 50%, transparent 75%);
    transform: translateX(-130%);
    border-radius: 50px;
}

.dld-pill:hover::before {
    animation: dld-pill-sweep .4s ease forwards;
}

@keyframes dld-pill-sweep {
    from {
        transform: translateX(-130%);
    }

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

.dld-pill-grad {
    background: linear-gradient(135deg, #31adad 0%, #ff2d8d 100%);
    color: #fff;
    box-shadow: 0 3px 12px rgba(49, 173, 173, .28);
    animation: dld-pill-glow 3s ease-in-out 2s infinite;
}

@keyframes dld-pill-glow {

    0%,
    100% {
        box-shadow: 0 3px 12px rgba(49, 173, 173, .28);
    }

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

.dld-pill-grad:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 22px rgba(49, 173, 173, .48);
    color: #fff;
}

.dld-pill-out {
    background: #fff;
    color: #31adad;
    border: 1.8px solid #31adad;
}

.dld-pill-out:hover {
    transform: translateY(-2px) scale(1.03);
    background: #f0fffe;
    color: #31adad;
    box-shadow: 0 4px 14px rgba(49, 173, 173, .18);
}

/* ── ARROW ANIMATE ── */
.dld-arrow {
    display: inline-block;
    transition: transform .2s;
}

.dld-pill:hover .dld-arrow {
    transform: translateX(3px);
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 500px) {
    .dld-card {
        flex-direction: row;
        gap: 14px;
        padding: 16px 16px;
    }

    .dld-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .dld-savings {
        display: none;
    }
}


/* ═══════════════════════════════
     META BAR (dates)
  ═══════════════════════════════ */
.meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 20px;
    margin-bottom: 10px;
    padding: 0 4px;
}

.meta-bar span {
    font-size: 0.76rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-bar .pub i {
    color: var(--teal);
    font-size: 13px;
}

.meta-bar .upd i {
    color: var(--pink);
    font-size: 13px;

}

/* ═══════════════════════════════
     MAIN CARD
  ═══════════════════════════════ */
.main-card {
    background: linear-gradient(135deg, #31adad 20%, #ff2d8d 110%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 14px 50px rgba(49, 173, 173, 0.28), 0 4px 20px rgba(255, 45, 141, 0.18);
}

/* decorative circles */
.main-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.main-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 35%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

/* ═══════════════════════════════
     TOP ROW  —  Author 40% | Form 60%
  ═══════════════════════════════ */
.section-top {
    display: flex;
    flex-wrap: wrap;
    padding: 25px 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
    gap: 0;
}

/* ── AUTHOR COL (40%) ── */
.author-col {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.20);
}

/* Avatar with animated gradient ring + hover glow */
.avatar-outer {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
    cursor: pointer;
}

/* spinning gradient ring */
.avatar-outer::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(#31adad, #ff2d8d, #31adad);
    animation: spinRing 3s linear infinite;
    z-index: 0;
}

@keyframes spinRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* hover box-shadow glow */
.avatar-outer:hover::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 45, 141, 0.4) 0%, rgba(49, 173, 173, 0.3) 60%, transparent 75%);
    z-index: -1;
    animation: pulseGlow 1s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from {
        opacity: 0.6;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

.avatar-outer img {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    position: relative;
    z-index: 1;
    margin: 3px;
    display: block;
    transition: transform .3s;
}

.avatar-outer:hover img {
    transform: scale(1.04);
}

/* verified badge on avatar */
.verified-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: var(--grad);
    border-radius: 50%;
    border: 2.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: popIn .5s cubic-bezier(.34, 1.56, .64, 1) both;
    animation-delay: .4s;
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.verified-badge i {
    color: #fff;
    font-size: 9px;
}

.a-name {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2px;
    animation: fadeUp .5s ease both;
    animation-delay: .1s;
}

.a-role {
    font-size: 0.63rem;
    padding: 2px 9px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    white-space: nowrap;
    /* color: var(--grad);
    font-size: 0.72rem;
    text-align: center;
    margin-bottom: 6px;
    line-height: 1.4; */
}

.a-bio {
    color: r#fff;
    font-size: 0.72rem !important;
    text-align: center;
    line-height: 1.55;
    margin-bottom: 10px;
}

.profile-btn {
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    padding: 5px 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background .2s, transform .2s;
    margin-bottom: 14px;
}

.profile-btn:hover {
    background: rgba(255, 255, 255, 0.30);
    color: #fff;
    transform: translateY(-1px);
}

/* Badges */
.badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.abadge {
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    border-radius: 50px;
    padding: 4px 11px;
    font-size: 0.65rem;
    font-weight: 600;
    transition: background .2s, transform .18s;
    cursor: default;
}

.abadge:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── FORM COL (60%) ── */
.form-col {
    width: 50%;
    padding-left: 28px;
    animation: fadeUp .5s ease both;
    animation-delay: .15s;
}

.form-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    line-height: 1.55;
    margin-bottom: 16px;
}

.f-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    outline: none;
    margin-bottom: 10px;
    transition: border-color .2s, background .2s;
    resize: none;
}

.f-input::placeholder {
    color: rgba(255, 255, 255, 0.60);
}

.f-input:focus {
    border-color: rgba(255, 255, 255, 0.70);
    background: rgba(255, 255, 255, 0.25);
}

textarea.f-input {
    height: 78px;
}

.submit-btn {
    background: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--teal);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: transform .18s, box-shadow .18s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.submit-btn i {
    transition: transform .2s;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

/* ═══════════════════════════════
     BOTTOM ROW  —  Social 40% | Reviews 60%
  ═══════════════════════════════ */
.section-bottom {
    display: flex;
    flex-wrap: wrap;
    padding: 22px 30px 26px;
    position: relative;
    z-index: 1;
    gap: 0;
}

/* ── SOCIAL + AFFILIATE (40%) ── */
.social-col {
    width: 40%;
    padding-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.col-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Social buttons — copied from v1 style with full labels */
.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .18s, box-shadow .18s;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.20);
}

.social-btn i {
    font-size: 0.85rem;
}

.btn-facebook {
    background: #1877f2;
    color: #fff;
}

.btn-twitter {
    background: #000;
    color: #fff;
}

.btn-pinterest {
    background: #e60023;
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-copy {
    background: var(--grad);
    color: #fff;
}

/* Affiliate inside social col */
.affiliate-box {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 0 10px 10px 0;
    padding: 10px 12px;
    font-size: 0.70rem;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.6;
}

.affiliate-box .af-title {
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
    font-size: 0.72rem;
}

.affiliate-box .af-title i {
    font-size: 0.75rem;
    color: #ffd94a;
}

/* ── REVIEWS COL (60%) ── */
.reviews-col {
    width: 60%;
    padding-left: 28px;
}

/* Fixed height — 2 visible, rest scrollable */
.reviews-scroll {
    height: 300px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.reviews-scroll::-webkit-scrollbar {
    width: 4px;
}

.reviews-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.reviews-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.30);
    border-radius: 4px;
}

.review-item {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 11px 13px;
    margin-bottom: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.35);
    transition: background .2s;
}

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

.review-item:hover {
    background: rgba(255, 255, 255, 0.18);
}

.r-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
    flex-wrap: wrap;
    gap: 4px;
}

.r-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.r-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    outline: 2px solid rgba(255, 255, 255, 0.40);
    outline-offset: 1px;
    flex-shrink: 0;
}

.r-name {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
}

.r-stars {
    color: #ffd94a;
    font-size: 0.70rem;
    letter-spacing: 1px;
}

.r-prod-badge {
    font-size: 0.63rem;
    padding: 2px 9px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    white-space: nowrap;
}

.r-meta {
    font-size: 0.63rem;
    color: rgba(255, 255, 255, 0.50);
    margin-bottom: 5px;
}

.r-text {
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.73rem;
    line-height: 1.55;
}

.r-verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.62rem;
    color: #6ef7c8;
    margin-top: 5px;
    font-weight: 600;
}

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

    .section-top,
    .section-bottom {
        padding: 20px 16px;
        flex-direction: column;
    }

    .author-col,
    .form-col,
    .social-col,
    .reviews-col {
        width: 100%;
    }

    .author-col {
        flex-direction: row;
        align-items: flex-start;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 18px;
        margin-bottom: 18px;
        gap: 14px;
    }

    .avatar-outer {
        flex-shrink: 0;
    }

    .a-name,
    .a-role,
    .a-bio {
        text-align: left;
    }

    .badges-grid,
    .profile-btn {
        justify-content: flex-start;
    }

    .form-col {
        padding-left: 0;
    }

    .social-col {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .reviews-col {
        padding-left: 0;
    }

    .reviews-scroll {
        height: 180px;
    }
}


/* ═══════════════════════════════
   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-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;
    }
}


/* ── RECAP CHECKLIST ── */
.rc-outer {
    font-family: 'Poppins', sans-serif;
    margin: 32px 0;
}

/* Title */
.rc-title {
    font-size: clamp(22px, 4vw, 27px);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 20px;
}

.rc-pink {
    background: linear-gradient(90deg, #ff2d8d, #e0186e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rc-teal {
    background: linear-gradient(90deg, #31adad, #2a9898);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rc-dark {
    color: #111827;
}

/* Card */
.rc-card {
    background: linear-gradient(135deg, #f0fffe 0%, #fdf0f7 100%);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 22px 24px;
}

/* List */
.rc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Each item */
.rc-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Gradient circle check icon */
.rc-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.rc-text {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .rc-card {
        padding: 18px 16px;
    }

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



/* ── BADGE PILL ── */
.pc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: #e6fafa;
    border: 1px solid #b2e8e8;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #31adad;
}

.pc-badge svg {
    width: 13px;
    height: 13px;
    stroke: #31adad;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── HEADING ── */
.pc-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: #111827;
    letter-spacing: -.4px;
}

.pc-subtitle {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 400;
}

/* ── PROS CARD ── */
.pc-pros-card {
    background: linear-gradient(150deg, #dff8f8 0%, #f0fdfd 55%, #fff 100%);
    border: 1px solid #b8e8ea;
    border-radius: 18px;
    padding: 28px 24px 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(49, 173, 173, .07), 0 6px 24px rgba(49, 173, 173, .08);
    transition: box-shadow .22s, transform .22s;
}

.pc-pros-card:hover {
    box-shadow: 0 8px 36px rgba(49, 173, 173, .15);
    transform: translateY(-2px);
}

.pc-pros-card::after {
    content: '';
    position: absolute;
    top: -28px;
    right: -28px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(49, 173, 173, .13);
    pointer-events: none;
}

/* ── CONS CARD ── */
.pc-cons-card {
    background: linear-gradient(150deg, #ffe8f4 0%, #fff4fa 55%, #fff 100%);
    border: 1px solid #f0b0d0;
    border-radius: 18px;
    padding: 28px 24px 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 45, 141, .07), 0 6px 24px rgba(255, 45, 141, .08);
    transition: box-shadow .22s, transform .22s;
}

.pc-cons-card:hover {
    box-shadow: 0 8px 36px rgba(255, 45, 141, .15);
    transform: translateY(-2px);
}

.pc-cons-card::after {
    content: '';
    position: absolute;
    top: -28px;
    right: -28px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 45, 141, .11);
    pointer-events: none;
}

/* ── CARD HEADER ── */
.pc-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pc-head-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pc-head-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pc-icon-teal {
    background: #31adad;
}

.pc-icon-pink {
    background: #ff2d8d;
}

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

/* ── LIST ── */
.pc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.pc-list-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .055);
}

.pc-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pc-list-item:first-child {
    padding-top: 0;
}

/* Circle icon */
.pc-ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.pc-ico svg {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Teal outline circle */
.pc-ico-teal {
    background: transparent;
    border: 2px solid #31adad;
}

.pc-ico-teal svg {
    width: 13px;
    height: 13px;
    stroke: #31adad;
    stroke-width: 2.8;
}

/* Pink filled circle */
.pc-ico-pink {
    background: #ff2d8d;
    border: 2px solid #ff2d8d;
}

.pc-ico-pink svg {
    width: 11px;
    height: 11px;
    stroke: #fff;
    stroke-width: 2.8;
}

.pc-item-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 2px;
}

.pc-item-desc {
    font-size: 12.5px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.5;
}

/* ── CTA CARD ── */
.pc-cta-card {
    background: #fff;
    border: 1px solid #e9eaf0;
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04), 0 6px 22px rgba(0, 0, 0, .06);
}

.pc-cta-title {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 800;
    color: #111827;
    letter-spacing: -.3px;
}

.pc-cta-desc {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.65;
    max-width: 480px;
}

.pc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    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;
}

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

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

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

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

/* ── SCROLL ANIMATIONS ── */
.pc-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s cubic-bezier(.34, 1.18, .64, 1);
}

.pc-anim.pc-in {
    opacity: 1;
    transform: translateY(0);
}
