﻿/*==================================================
 BELANCIA SOLUTION PAGES
 Refactored: deduplicated rules, added accessibility
 states (focus-visible, reduced motion) and small
 UX polish. Visual design is unchanged.
==================================================*/

/*==================================================
 SHARED BUTTON (also used in later CTA sections)
==================================================*/

.sp-btn-primary {
    padding: 16px 34px;
    border-radius: 12px;
    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .30s;
}

    .sp-btn-primary:hover {
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(37,99,235,.30);
    }

@keyframes spFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/*==================================================
 TRUSTED BUSINESSES
==================================================*/

.sp-trusted {
    padding: var(--section-space) 0;
    background: var(--surface-color);
}

.sp-section-label {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: var(--sp-primary-light);
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 14px;
    margin-bottom: 20px;
}

.sp-section-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.sp-section-description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--default-color);
}

.sp-company-card {
    height: 160px;
    border: 1px solid var(--sp-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: .35s;
    background: var(--surface-color);
}

    .sp-company-card:hover {
        transform: translateY(-8px);
        border-color: transparent;
        box-shadow: var(--shadow-md);
    }

    .sp-company-card i {
        font-size: 38px;
        color: var(--accent-color);
        margin-bottom: 20px;
    }

    .sp-company-card h5 {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        color: var(--heading-color);
    }
/*==================================================
 BUSINESS PROBLEMS
==================================================*/

.sp-problems {
    padding: var(--section-space) 0;
    background: color-mix(in srgb, var(--accent-color) 4%, var(--background-color));
}

.sp-problem-card {
    background: var(--surface-color);
    border-radius: 22px;
    padding: 35px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    height: 100%;
    transition: .35s;
    border: 1px solid transparent;
}

    .sp-problem-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
        box-shadow: var(--shadow-md);
    }

.sp-problem-icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--sp-primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .sp-problem-icon i {
        font-size: 30px;
        color: var(--accent-color);
    }

.sp-problem-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.sp-problem-card p {
    color: var(--default-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.sp-solution {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

    .sp-solution i {
        color: var(--sp-success);
        font-size: 22px;
        margin-top: 2px;
    }

    .sp-solution span {
        font-weight: 600;
        color: var(--heading-color);
    }
/*==================================================
FEATURES
==================================================*/

.sp-features {
    padding: var(--section-space) 0;
    background: var(--surface-color);
}

.sp-feature-card {
    background: var(--surface-color);
    border: 1px solid var(--sp-border);
    border-radius: 22px;
    padding: 35px 30px;
    height: 100%;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

    .sp-feature-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 4px;
        background: var(--accent-color);
        transform: scaleX(0);
        transition: .35s;
    }

    .sp-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-md);
        border-color: transparent;
    }

        .sp-feature-card:hover::before {
            transform: scaleX(1);
        }

.sp-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--sp-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: .35s;
}

.sp-feature-card:hover .sp-feature-icon {
    background: var(--accent-color);
}

    .sp-feature-card:hover .sp-feature-icon i {
        color: #fff;
    }

.sp-feature-icon i {
    font-size: 32px;
    color: var(--accent-color);
    transition: .35s;
}

.sp-feature-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.sp-feature-card p {
    margin: 0;
    color: var(--default-color);
    line-height: 1.8;
}
/*==================================================
SHOWCASE
==================================================*/

.sp-showcase {
    padding: var(--section-space) 0;
    background: color-mix(in srgb, var(--accent-color) 4%, var(--background-color));
}

.sp-dashboard-wrapper {
    position: relative;
}

    .sp-dashboard-wrapper img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 900 / 640;
        object-fit: cover;
        background: var(--sp-primary-light);
        border-radius: 24px;
        box-shadow: var(--shadow-lg);
    }

.sp-mini-card {
    position: absolute;
    background: var(--surface-color);
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    animation: spFloat 5s ease-in-out infinite;
    min-width: 180px;
}

    .sp-mini-card small {
        display: block;
        color: var(--default-color);
        margin-bottom: 5px;
    }

    .sp-mini-card strong {
        display: block;
        font-size: 28px;
        color: var(--heading-color);
    }

    .sp-mini-card span {
        font-size: 14px;
        font-weight: 600;
    }

.card-sales {
    top: 40px;
    left: -40px;
}

.card-stock {
    bottom: 40px;
    left: -30px;
}

.card-users {
    right: -40px;
    top: 45%;
}

.sp-showcase-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sp-showcase-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

    .sp-showcase-item i {
        font-size: 24px;
        color: var(--sp-success);
        margin-top: 5px;
    }

    .sp-showcase-item h5 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--heading-color);
    }

    .sp-showcase-item p {
        margin: 0;
        line-height: 1.8;
        color: var(--default-color);
    }

@media(max-width:991px) {

    .card-sales,
    .card-stock,
    .card-users {
        display: none;
    }
}
/*==================================================
BENEFITS
==================================================*/

.sp-benefits {
    padding: var(--section-space) 0;
    background: var(--surface-color);
}

.sp-benefit-card {
    height: 100%;
    padding: 40px;
    border-radius: 22px;
    background: var(--surface-color);
    border: 1px solid var(--sp-border);
    transition: .35s;
}

    .sp-benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-md);
    }

.sp-benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: var(--sp-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

    .sp-benefit-icon i {
        font-size: 34px;
        color: var(--accent-color);
    }

.sp-benefit-card h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--heading-color);
}

.sp-benefit-card p {
    line-height: 1.9;
    color: var(--default-color);
    margin: 0;
}

.sp-benefits img.rounded-4 {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 900 / 640;
    object-fit: cover;
    background: var(--sp-primary-light);
}

.sp-benefit-large {
    height: 100%;
    padding: 50px;
    border-radius: 24px;
    background: linear-gradient(135deg,var(--heading-color),var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
}

    .sp-benefit-large h3 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 20px;
        color: #fff;
    }

    .sp-benefit-large p {
        line-height: 1.9;
        margin-bottom: 35px;
        opacity: .95;
    }

    .sp-benefit-large ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 18px;
    }

    .sp-benefit-large li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
    }

    .sp-benefit-large i {
        font-size: 20px;
    }
/*==================================================
INDUSTRIES
==================================================*/

.sp-industries {
    padding: var(--section-space) 0;
    background: color-mix(in srgb, var(--accent-color) 4%, var(--background-color));
}

.sp-industry-card {
    display: block;
    height: 100%;
    padding: 40px;
    background: var(--surface-color);
    border-radius: 24px;
    text-decoration: none;
    border: 1px solid var(--sp-border);
    transition: .35s;
    color: inherit;
    position: relative;
    overflow: hidden;
}

    .sp-industry-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: var(--accent-color);
        transform: scaleX(0);
        transition: .35s;
    }

    .sp-industry-card:hover {
        text-decoration: none;
        transform: translateY(-10px);
        box-shadow: var(--shadow-md);
    }

        .sp-industry-card:hover::before {
            transform: scaleX(1);
        }

.sp-industry-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: var(--sp-primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    transition: .35s;
}

.sp-industry-card:hover .sp-industry-icon {
    background: var(--accent-color);
}

    .sp-industry-card:hover .sp-industry-icon i {
        color: white;
    }

.sp-industry-icon i {
    font-size: 34px;
    color: var(--accent-color);
    transition: .35s;
}

.sp-industry-card h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--heading-color);
}

.sp-industry-card p {
    line-height: 1.9;
    color: var(--default-color);
    margin-bottom: 30px;
}

.sp-industry-card span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--accent-color);
}

    .sp-industry-card span i {
        transition: .30s;
    }

.sp-industry-card:hover span i {
    transform: translateX(6px);
}
/*==================================================
PROCESS
==================================================*/

.sp-process {
    padding: var(--section-space) 0;
    background: var(--surface-color);
}

.sp-step-card {
    position: relative;
    padding: 45px 30px;
    height: 100%;
    background: var(--surface-color);
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--sp-border);
    transition: .35s;
    overflow: hidden;
}

    .sp-step-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-md);
    }

.sp-step-number {
    position: absolute;
    right: 22px;
    top: 18px;
    font-size: 55px;
    font-weight: 800;
    color: #edf2f7;
    line-height: 1;
    user-select: none;
}

.sp-step-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 24px;
    background: var(--sp-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.sp-step-card:hover .sp-step-icon {
    background: var(--accent-color);
    transform: rotate(-6deg);
}

.sp-step-icon i {
    font-size: 40px;
    color: var(--accent-color);
    transition: .35s;
}

.sp-step-card:hover .sp-step-icon i {
    color: white;
}

.sp-step-card h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--heading-color);
}

.sp-step-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--default-color);
}
/*==================================================
SUCCESS
==================================================*/

.sp-success {
    padding: var(--section-space) 0;
    background: color-mix(in srgb, var(--accent-color) 4%, var(--background-color));
}

.sp-success-card {
    height: 100%;
    padding: 40px;
    background: var(--surface-color);
    border-radius: 22px;
    border: 1px solid var(--sp-border);
    transition: .35s;
    text-align: center;
}

    .sp-success-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-md);
    }

.sp-success-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 24px;
    background: var(--sp-primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .sp-success-icon i {
        font-size: 36px;
        color: var(--accent-color);
    }

.sp-success-card h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.sp-success-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--default-color);
}

.sp-success-banner {
    margin-top: 80px;
    padding: 55px;
    border-radius: 30px;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: white;
}

    .sp-success-banner h3 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 20px;
        color: #fff;
    }

    .sp-success-banner p {
        font-size: 18px;
        opacity: .95;
        margin: 0;
        max-width: 700px;
    }
/*==================================================
FAQ
==================================================*/

.sp-faq {
    padding: var(--section-space) 0;
    background: var(--surface-color);
}

.sp-accordion {
    max-width: 900px;
    margin: auto;
}

    .sp-accordion .accordion-item {
        border: none;
        border-radius: 18px;
        overflow: hidden;
        margin-bottom: 18px;
        box-shadow: var(--shadow-sm);
    }

    .sp-accordion .accordion-button {
        padding: 24px 28px;
        font-size: 20px;
        font-weight: 700;
        background: var(--surface-color);
        color: var(--heading-color);
        box-shadow: none;
    }

        .sp-accordion .accordion-button:not(.collapsed) {
            background: color-mix(in srgb, var(--accent-color) 4%, var(--background-color));
            color: var(--accent-color);
        }

        .sp-accordion .accordion-button:focus {
            box-shadow: none;
        }

    .sp-accordion .accordion-body {
        padding: 0 28px 28px;
        line-height: 1.9;
        color: var(--default-color);
        font-size: 17px;
    }
/*==================================================
FINAL CTA
==================================================*/

.sp-final-cta {
    padding: var(--section-space) 0;
    background: color-mix(in srgb, var(--accent-color) 4%, var(--background-color));
}

.sp-cta-box {
    background: linear-gradient(135deg,var(--heading-color),var(--accent-color));
    padding: 70px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    color: white;
}

    .sp-cta-box::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(255,255,255,.05);
        border-radius: 50%;
        right: -180px;
        top: -180px;
    }

    .sp-cta-box h2 {
        font-size: 52px;
        font-weight: 800;
        margin: 20px 0;
        line-height: 1.2;
        position: relative;
        color: #fff;
    }

    .sp-cta-box p {
        font-size: 19px;
        line-height: 1.9;
        opacity: .95;
        max-width: 700px;
        position: relative;
    }

.sp-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

    .sp-cta-features div {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
    }

    .sp-cta-features i {
        font-size: 20px;
    }

.sp-cta-box .sp-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: var(--surface-color);
    color: var(--accent-color);
    font-size: 18px;
    border-radius: 14px;
    font-weight: 700;
    margin-top: 20px;
}

    .sp-cta-box .sp-btn-primary:hover {
        background: #f8fafc;
        transform: translateY(-4px);
    }

@media(max-width:991px) {

    .sp-cta-box {
        padding: 45px 30px;
        text-align: center;
    }

        .sp-cta-box h2 {
            font-size: 38px;
        }

    .sp-cta-features {
        justify-content: center;
        gap: 18px;
    }
}

/*==================================================
 RELATED SOLUTIONS
==================================================*/

.sp-related-card {
    display: block;
    height: 100%;
    padding: 30px;
    background: var(--surface-color);
    border-radius: 18px;
    text-decoration: none;
    border: 1px solid var(--sp-border);
    transition: .30s;
    color: inherit;
}

    .sp-related-card:hover {
        text-decoration: none;
        transform: translateY(-6px);
        border-color: var(--accent-color);
        box-shadow: var(--shadow-md);
    }

    .sp-related-card h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--heading-color);
    }

    .sp-related-card p {
        margin: 0;
        color: var(--default-color);
        line-height: 1.7;
    }

    /*==================================================
 ACCESSIBILITY / UX POLISH
 (does not alter the visual design)
==================================================*/

    /* Visible keyboard focus on every interactive element */
    .sp-btn-primary:focus-visible,
    .sp-industry-card:focus-visible,
    .sp-related-card:focus-visible,
    .sp-accordion .accordion-button:focus-visible {
        outline: 3px solid var(--accent-color);
        outline-offset: 3px;
    }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .sp-mini-card {
        animation: none;
    }

    .sp-problem-card,
    .sp-feature-card,
    .sp-company-card,
    .sp-benefit-card,
    .sp-industry-card,
    .sp-step-card,
    .sp-success-card,
    .sp-related-card,
    .sp-btn-primary,
    .sp-industry-icon,
    .sp-feature-icon,
    .sp-step-icon {
        transition: none !important;
    }

        .sp-problem-card:hover,
        .sp-feature-card:hover,
        .sp-company-card:hover,
        .sp-benefit-card:hover,
        .sp-industry-card:hover,
        .sp-step-card:hover,
        .sp-success-card:hover,
        .sp-related-card:hover,
        .sp-btn-primary:hover {
            transform: none;
        }
}

/* Tighten up section titles on very small screens */
@media (max-width: 575px) {

    .sp-section-title {
        font-size: 32px;
    }

    .sp-cta-box h2 {
        font-size: 30px;
    }
}
/*==================================================
 COMPARISON PAGES (compare/*)
 New components, same design tokens as the rest of
 solutionpages.css (var(--accent-color) etc). Append
 this whole block to the end of solutionpages.css.
==================================================*/

/* ---------- VS HERO ---------- */

.sp-compare-hero {
    margin-top:20px;
    background: color-mix(in srgb, var(--accent-color) 4%, var(--background-color));
    text-align: center;
}

.sp-vs-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 30px;
}

    .sp-vs-badge .sp-vs-name {
        font-size: 22px;
        font-weight: 800;
        color: var(--heading-color);
        padding: 14px 26px;
        border-radius: 14px;
        background: var(--surface-color);
        border: 1px solid var(--sp-border);
        box-shadow: var(--shadow-sm);
    }

        .sp-vs-badge .sp-vs-name.sp-vs-belancia {
            background: var(--accent-color);
            border-color: transparent;
            color: #fff;
        }

    .sp-vs-badge .sp-vs-x {
        font-size: 16px;
        font-weight: 700;
        color: var(--default-color);
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-color);
        border: 1px solid var(--sp-border);
    }

.sp-compare-hero .sp-section-title {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.sp-compare-hero .sp-section-description {
    max-width: 700px;
    margin: 0 auto 35px;
}

.sp-compare-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sp-btn-outline {
    padding: 16px 34px;
    border-radius: 12px;
    background: transparent;
    color: var(--heading-color);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--sp-border);
    transition: .3s;
}

    .sp-btn-outline:hover {
        color: var(--accent-color);
        border-color: var(--accent-color);
        transform: translateY(-4px);
    }

/* ---------- QUICK VERDICT STRIP ---------- */

.sp-verdict-strip {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.sp-verdict-card {
    background: var(--surface-color);
    border: 1px solid var(--sp-border);
    border-radius: 18px;
    padding: 26px 20px;
    text-align: left;
}

    .sp-verdict-card span {
        display: block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .4px;
        color: var(--accent-color);
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .sp-verdict-card p {
        margin: 0;
        font-size: 15px;
        line-height: 1.7;
        color: var(--default-color);
    }

@media(max-width:767px) {
    .sp-verdict-strip {
        grid-template-columns: 1fr;
    }
}

/* ---------- SCREENSHOT SHOWCASE (compare variant) ---------- */

.sp-compare-shot {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--sp-border);
    box-shadow: var(--shadow-lg);
}

    .sp-compare-shot img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 1200 / 750;
        object-fit: cover;
        background: var(--sp-primary-light);
    }

    .sp-compare-shot figcaption {
        padding: 14px 20px;
        font-size: 14px;
        font-weight: 600;
        color: var(--default-color);
        background: var(--surface-color);
        border-top: 1px solid var(--sp-border);
    }

/* ---------- COMPARISON TABLE ---------- */

.sp-compare-table-wrap {
    background: var(--surface-color);
    border: 1px solid var(--sp-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.sp-compare-table {
    width: 100%;
    border-collapse: collapse;
}

    .sp-compare-table th,
    .sp-compare-table td {
        padding: 20px 24px;
        text-align: center;
        border-bottom: 1px solid var(--sp-border);
        font-size: 15.5px;
    }

        .sp-compare-table th:first-child,
        .sp-compare-table td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--heading-color);
            width: 34%;
        }

    .sp-compare-table thead th {
        background: color-mix(in srgb, var(--accent-color) 4%, var(--background-color));
        font-size: 17px;
        font-weight: 800;
        color: var(--heading-color);
        padding: 24px;
    }

        .sp-compare-table thead th.sp-col-belancia {
            background: var(--accent-color);
            color: #fff;
        }

    .sp-compare-table tbody tr:last-child td {
        border-bottom: none;
    }

    .sp-compare-table tbody tr:hover td {
        background: color-mix(in srgb, var(--accent-color) 3%, transparent);
    }

    .sp-compare-table td.sp-col-belancia {
        background: color-mix(in srgb, var(--accent-color) 5%, transparent);
        font-weight: 600;
    }

    .sp-compare-table i.bi-check-circle-fill {
        color: var(--sp-success);
        font-size: 20px;
    }

    .sp-compare-table i.bi-x-circle {
        color: #cbd5e1;
        font-size: 20px;
    }

    .sp-compare-table i.bi-dash-circle {
        color: #f59e0b;
        font-size: 20px;
    }

@media(max-width:767px) {
    .sp-compare-table-wrap {
        overflow-x: auto;
    }

    .sp-compare-table {
        min-width: 620px;
    }
}

/* ---------- "WHY SWITCH" CARDS reuse .sp-benefit-card, no new rules needed ---------- */

/* ---------- MIGRATION / IMPORT STEPS reuse .sp-step-card ---------- */

/* ---------- RELATED COMPARISONS strip ---------- */

.sp-related-compare {
    padding: var(--section-space) 0;
    background: var(--surface-color);
}
