/* ============================================
   VS COMPARISON PAGES — White Card Theme
   ============================================ */

/* ---- LANDING PAGE ---- */

.vs-landing-subtitle {
    text-align: center;
    color: var(--color-text-on-dark-muted);
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.vs-landing-hint {
    color: var(--color-text-on-dark-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

/* ---- PICKER ---- */

.vs-picker-card {
    background: var(--color-surface-card);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--color-border-light);
}

.vs-picker-label {
    display: block;
    color: var(--color-text-mid);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.vs-picker-wrap {
    position: relative;
}

.vs-picker-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
    background: var(--color-surface-warm);
    color: var(--color-text-dark);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.vs-picker-input::placeholder {
    color: var(--color-text-subtle);
}

.vs-picker-input:focus {
    border-color: var(--color-primary);
}

.vs-picker-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--color-surface-card);
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
    margin-top: 4px;
    max-height: 240px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: none;
}

.vs-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    color: var(--color-text-dark);
    font-size: 14px;
    transition: background 0.15s;
}

.vs-dd-item:hover {
    background: var(--color-surface-warm);
}

.vs-dd-item img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
    background: var(--color-surface-warm);
    padding: 2px;
}

.vs-dd-empty {
    padding: 12px 14px;
    color: var(--color-text-subtle);
    font-size: 14px;
    text-align: center;
}

.vs-picker-vs {
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text-subtle);
    letter-spacing: 2px;
    padding-bottom: 8px;
}

.vs-go-btn {
    background: linear-gradient(135deg, #7a95f8, #6366f1);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.vs-go-btn:hover,
.vs-go-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.vs-go-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ---- POPULAR COMPARISONS GRID ---- */

.vs-popular-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.vs-popular-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-surface-card);
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--color-text-dark);
    transition: all 0.2s;
}

.vs-popular-card:hover,
.vs-popular-card:focus-visible {
    border-color: var(--color-primary);
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--color-text-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.vs-popular-left,
.vs-popular-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.vs-popular-right {
    justify-content: flex-end;
}

.vs-popular-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
    background: var(--color-surface-warm);
    padding: 2px;
    flex-shrink: 0;
}

.vs-popular-name {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vs-popular-vs {
    color: var(--color-text-subtle);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    padding: 0 8px;
}

/* ---- CHIPS ---- */

.vs-type-chips,
.vs-more-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.vs-chip {
    display: inline-block;
    background: var(--color-surface-card);
    border: 1px solid var(--color-border-light);
    border-radius: 20px;
    padding: 8px 16px;
    color: var(--color-text-dark);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.vs-chip:hover,
.vs-chip:focus-visible {
    border-color: var(--color-primary);
    background: var(--color-surface-warm);
    color: var(--color-text-primary);
    text-decoration: none;
}

/* ---- ALL FIRMS PILLS ---- */

.vs-all-firms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.vs-firm-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--color-surface-card);
    border: 1px solid var(--color-border-light);
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--color-text-dark);
    font-size: 13px;
}

.vs-firm-pill:hover {
    border-color: var(--color-primary);
    color: var(--color-text-primary);
}

.vs-firm-pill.vs-pill-selected {
    background: rgba(122, 149, 248, 0.1);
    border-color: rgba(122, 149, 248, 0.5);
    color: var(--color-text-primary);
}

.vs-pill-logo {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: contain;
    background: var(--color-surface-warm);
    padding: 1px;
}

.vs-pill-score {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
}

/* ============================================
   VS SHOW PAGE
   ============================================ */

/* ---- SECTION TITLES ---- */

.vs-section-title {
    color: var(--color-text-on-dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.vs-section-title i {
    font-size: 22px;
    color: rgba(122, 149, 248, 0.8);
}

/* ---- VS HERO ---- */

.vs-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 32px 24px;
    margin-bottom: 28px;
    background: var(--color-surface-card);
    border-radius: 16px;
    border: 1px solid var(--color-border-light);
}

.vs-hero-firm {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.vs-hero-logo {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: contain;
    background: var(--color-surface-warm);
    padding: 6px;
    margin-bottom: 12px;
    transition: transform 0.2s;
}

.vs-hero-logo:hover {
    transform: scale(1.05);
}

.vs-hero-name {
    color: var(--color-text-primary);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.2;
}

.vs-score-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7a95f8, #6366f1);
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.vs-hero-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-subtle);
    font-size: 13px;
}

.vs-flag {
    width: 18px;
    height: 13px;
    border-radius: 2px;
}

.vs-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vs-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-surface-warm);
    border: 2px solid var(--color-border-light);
    color: var(--color-text-subtle);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
}

/* ---- COMPARISON TABLE ---- */

.vs-table-card {
    background: var(--color-surface-card);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--color-border-light);
}

.vs-table-wrap {
    overflow-x: auto;
}

.vs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.vs-table thead th {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid var(--color-border-light);
    background: var(--color-surface-warm);
}

.vs-th-firm {
    color: var(--color-text-primary);
    text-align: center;
    width: 38%;
}

.vs-th-label {
    color: var(--color-text-mid);
    text-align: center;
    width: 24%;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vs-table tbody td {
    padding: 12px 16px;
    color: var(--color-text-dark);
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid var(--color-border-light);
    vertical-align: middle;
}

.vs-label-cell {
    color: var(--color-text-mid) !important;
    font-size: 13px !important;
    font-weight: 500;
}

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

.vs-table tbody tr:hover td {
    background: var(--color-surface-warm);
}

.vs-winner {
    color: var(--color-success) !important;
    font-weight: 600;
}

.vs-crown {
    color: var(--color-accent-amber-dark);
    font-size: 14px;
    margin-left: 4px;
}

.vs-yes {
    color: var(--color-success);
    font-weight: 500;
}

.vs-no {
    color: var(--color-text-hint);
}

/* ---- PROS & CONS ---- */

.vs-pros-cons {
    margin-bottom: 24px;
}

.vs-pros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vs-pros-card {
    background: var(--color-surface-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--color-border-light);
}

.vs-pros-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--color-text-primary);
    font-size: 15px;
}

.vs-mini-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
    background: var(--color-surface-warm);
    padding: 2px;
}

.vs-pro-title {
    color: var(--color-success);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vs-con-title {
    color: #c62828;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vs-pro-item {
    color: var(--color-text-mid);
    font-size: 13px;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.vs-pro-item::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.vs-con-item {
    color: var(--color-text-mid);
    font-size: 13px;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.vs-con-item::before {
    content: '\2212';
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: 700;
}

/* ---- DEALS ---- */

.vs-deals-section {
    margin-bottom: 24px;
}

.vs-deals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vs-deals-card {
    background: var(--color-surface-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--color-border-light);
}

.vs-deals-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--color-text-primary);
    font-size: 15px;
}

.vs-deal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.vs-deal-item:last-child {
    border-bottom: none;
}

.vs-deal-percent {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

.vs-deal-desc {
    color: var(--color-text-mid);
    font-size: 13px;
    flex: 1;
}

.vs-promo-code {
    background: rgba(245, 158, 11, 0.1);
    border: 1px dashed rgba(245, 158, 11, 0.5);
    color: var(--color-accent-amber-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: monospace;
}

.vs-promo-code:hover {
    background: rgba(245, 158, 11, 0.2);
}

.vs-promo-code.copied {
    border-color: #047857;
    color: var(--color-success);
    background: rgba(52, 211, 153, 0.1);
}

.vs-no-deals {
    color: var(--color-text-subtle);
    font-size: 13px;
    margin: 0;
}

/* ---- CTA ROW ---- */

.vs-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.vs-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.vs-cta-btn:hover,
.vs-cta-btn:focus-visible {
    text-decoration: none;
    transform: translateY(-1px);
}

.vs-cta-a {
    background: linear-gradient(135deg, #34d399, #059669);
    color: #fff;
}

.vs-cta-a:hover,
.vs-cta-a:focus-visible {
    color: #fff;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4);
}

.vs-cta-b {
    background: linear-gradient(135deg, #34d399, #059669);
    color: #fff;
}

.vs-cta-b:hover,
.vs-cta-b:focus-visible {
    color: #fff;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4);
}

.vs-cta-compare {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-dark);
}

.vs-cta-compare:hover,
.vs-cta-compare:focus-visible {
    border-color: var(--color-primary);
    color: var(--color-text-primary);
}

/* ---- MORE COMPARISONS ---- */

.vs-more-section {
    margin-bottom: 40px;
}

/* ---- SAFETY GRADE BADGE IN HERO ---- */

.vs-grade-badge {
    display: inline-block;
    background: var(--grade-color, #6366f1);
    color: #fff;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

/* ---- VERDICT SCORECARD ---- */

.vs-verdict-card {
    background: var(--color-surface-card);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--color-border-light);
}

.vs-verdict-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.vs-verdict-header h3 {
    color: var(--color-text-primary);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.vs-verdict-header i {
    font-size: 24px;
    color: #f59e0b;
}

.vs-verdict-score-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.vs-verdict-firm {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.vs-verdict-winner {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.04);
}

.vs-verdict-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: contain;
    background: var(--color-surface-warm);
    padding: 4px;
    margin-bottom: 8px;
}

.vs-verdict-name {
    color: var(--color-text-primary);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.vs-verdict-wins {
    color: var(--color-text-mid);
    font-size: 13px;
}

.vs-verdict-crown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    color: #f59e0b;
    font-size: 13px;
    font-weight: 700;
}

.vs-verdict-crown i {
    font-size: 16px;
}

.vs-verdict-vs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.vs-verdict-count {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text-primary);
}

.vs-verdict-divider {
    color: var(--color-text-subtle);
    font-size: 24px;
}

/* Category wins breakdown */

.vs-verdict-categories {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.vs-verdict-cat-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--color-surface-warm);
}

.vs-verdict-cat-indicator {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

.vs-cat-win-a {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.vs-cat-win-b {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.vs-cat-win-a-flip {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.vs-cat-tie {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.vs-verdict-cat-name {
    color: var(--color-text-dark);
    font-size: 14px;
    font-weight: 500;
    flex: 1;
}

.vs-verdict-cat-detail {
    color: var(--color-text-mid);
    font-size: 12px;
    flex: 1;
    text-align: center;
}

/* Best for */

.vs-verdict-bestfor {
    border-top: 1px solid var(--color-border-light);
    padding-top: 16px;
}

.vs-verdict-bestfor h4 {
    color: var(--color-text-primary);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.vs-bestfor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.vs-bestfor-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    background: var(--color-surface-warm);
    border-radius: 8px;
}

.vs-bestfor-label {
    color: var(--color-text-mid);
    font-size: 13px;
}

.vs-bestfor-pick {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-primary);
    font-size: 13px;
    font-weight: 600;
}

.vs-bestfor-logo {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: contain;
}

/* ---- VISUAL COMPARISON CHART ---- */

.vs-chart-card {
    background: var(--color-surface-card);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--color-border-light);
}

.vs-chart-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
}

.vs-chart-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-mid);
    font-size: 13px;
    font-weight: 500;
}

.vs-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.vs-legend-a {
    background: rgba(99, 102, 241, 0.8);
}

.vs-legend-b {
    background: rgba(16, 185, 129, 0.8);
}

/* ---- TRUSTPILOT INLINE ---- */

.vs-tp-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vs-tp-inline small {
    color: var(--color-text-subtle);
    font-size: 11px;
}

.vs-suspended-tag {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

/* ---- SAFETY GRADE INLINE ---- */

.vs-grade-inline {
    display: inline-block;
    background: var(--grade-color, #6366f1);
    color: #fff;
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

/* ---- PRICE COMPARISON TABLE ---- */

.vs-price-card {
    background: var(--color-surface-card);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--color-border-light);
}

.vs-price-subtitle {
    color: var(--color-text-mid);
    font-size: 13px;
    margin-bottom: 16px;
}

.vs-price-table th {
    text-align: center;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
    background: var(--color-surface-warm);
    border-bottom: 1px solid var(--color-border-light);
}

.vs-price-table td {
    text-align: center;
}

.vs-price-size {
    font-weight: 600;
    color: var(--color-text-primary) !important;
}

.vs-savings-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
}

.vs-price-tie {
    color: var(--color-text-subtle);
    font-size: 12px;
}

/* ---- NARRATIVE CARD ---- */

.vs-narrative-card {
    background: var(--color-surface-card);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--color-border-light);
}

.vs-narrative-para {
    color: var(--color-text-dark);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.vs-narrative-para:last-child {
    margin-bottom: 0;
}

/* ---- FAQ SECTION ---- */

.vs-faq-card {
    background: var(--color-surface-card);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--color-border-light);
}

.vs-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vs-faq-item {
    border: 1px solid var(--color-border-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s;
}

.vs-faq-item[open] {
    border-color: rgba(99, 102, 241, 0.3);
}

.vs-faq-question {
    padding: 14px 18px;
    cursor: pointer;
    color: var(--color-text-primary);
    font-size: 15px;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.vs-faq-question:hover,
.vs-faq-question:focus-visible {
    background: var(--color-surface-warm);
}

.vs-faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--color-text-subtle);
    font-weight: 400;
    transition: transform 0.2s;
}

.vs-faq-item[open] .vs-faq-question::after {
    content: '\2212';
}

.vs-faq-question::-webkit-details-marker {
    display: none;
}

.vs-faq-answer {
    padding: 0 18px 16px;
    color: var(--color-text-mid);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .vs-hero {
        flex-direction: column;
        gap: 16px;
        padding: 24px 16px;
    }

    .vs-hero-divider {
        transform: rotate(0deg);
    }

    .vs-hero-name {
        font-size: 18px;
    }

    .vs-hero-logo {
        width: 56px;
        height: 56px;
    }

    .vs-badge {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .vs-table thead th {
        padding: 8px 10px;
        font-size: 12px;
    }

    .vs-table tbody td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .vs-th-firm {
        width: 35%;
    }

    .vs-th-label {
        width: 30%;
    }

    .vs-pros-grid,
    .vs-deals-grid {
        grid-template-columns: 1fr;
    }

    .vs-popular-grid {
        grid-template-columns: 1fr;
    }

    .vs-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .vs-cta-btn {
        justify-content: center;
    }

    .vs-picker-card {
        padding: 20px 16px;
    }

    .vs-verdict-score-row {
        flex-direction: column;
        gap: 12px;
    }

    .vs-verdict-vs {
        flex-direction: row;
    }

    .vs-verdict-cat-row {
        flex-wrap: wrap;
    }

    .vs-verdict-cat-detail {
        width: 100%;
        text-align: left;
        order: 3;
    }

    .vs-bestfor-grid {
        grid-template-columns: 1fr;
    }

    .vs-chart-card canvas {
        height: 250px !important;
    }

    .vs-narrative-card {
        padding: 20px 16px;
    }

    .vs-faq-question {
        font-size: 14px;
        padding: 12px 14px;
    }
}

@media (max-width: 576px) {
    .vs-popular-name {
        font-size: 12px;
    }

    .vs-hero-name {
        font-size: 16px;
    }
}

/* ---- DIFFERENTIATOR STRIP (v1.96.0) ---- */
.vs-diff-strip {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.06));
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.vs-diff-strip__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4f46e5;
    flex-shrink: 0;
}

.vs-diff-strip__label i {
    font-size: 16px;
}

.vs-diff-strip__chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.vs-diff-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.2;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.vs-diff-chip:hover {
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.10);
}

.vs-diff-chip__short {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    padding-right: 8px;
    border-right: 1px solid #e5e7eb;
}

.vs-diff-chip__a,
.vs-diff-chip__b {
    font-weight: 700;
    color: #1a1a2e;
}

.vs-diff-chip__sep {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 768px) {
    .vs-diff-strip {
        padding: 12px 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .vs-diff-strip__chips {
        width: 100%;
    }

    .vs-diff-chip {
        font-size: 12px;
        padding: 5px 10px;
    }

    .vs-diff-chip__short {
        font-size: 10px;
        padding-right: 6px;
    }
}
