 /* ── Sell Landing Page Styles ── */
    .sell-hero {
        background: linear-gradient(150deg, #003da5 0%, #0055e9 60%, #0072ff 100%);
        position: relative;
        overflow: hidden;
    }
    .sell-hero::before {
        content: '';
        position: absolute;
        top: -80px; right: -80px;
        width: 420px; height: 420px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
        pointer-events: none;
    }
    .sell-hero::after {
        content: '';
        position: absolute;
        bottom: -120px; left: -60px;
        width: 320px; height: 320px;
        border-radius: 50%;
        background: rgba(255,255,255,0.04);
        pointer-events: none;
    }
    .sell-hero .badge-pill {
        display: inline-block;
        background: rgba(255,255,255,0.18);
        color: #fff;
        border-radius: 50px;
        padding: 6px 16px;
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        margin-bottom: 1.2rem;
        border: 1px solid rgba(255,255,255,0.3);
    }
    .sell-stat-card {
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 14px;
        backdrop-filter: blur(8px);
        padding: 1.1rem 1.4rem;
        color: #fff;
        text-align: center;
        flex: 1;
    }
    .sell-stat-card .stat-number {
        font-size: 1.6rem;
        font-weight: 800;
        line-height: 1.1;
    }
    .sell-stat-card .stat-label {
        font-size: 0.78rem;
        opacity: 0.82;
        margin-top: 2px;
    }
    .benefit-card {
        border: 1.5px solid #e8edf5;
        border-radius: 16px;
        padding: 2rem 1.6rem;
        height: 100%;
        transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        background: #fff;
    }
    .benefit-card:hover {
        box-shadow: 0 8px 32px rgba(0,70,190,0.1);
        border-color: #b3c8f7;
        transform: translateY(-3px);
    }
    .benefit-icon {
        width: 56px; height: 56px;
        border-radius: 14px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    .step-connector {
        display: none;
    }
    @media (min-width: 768px) {
        .step-connector {
            display: block;
            position: absolute;
            top: 32px;
            left: calc(50% + 44px);
            width: calc(100% - 88px);
            height: 2px;
            background: linear-gradient(to right, #0046be, #b3c8f7);
        }
    }
    .step-item {
        position: relative;
    }
    .step-bubble {
        width: 64px; height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0046be, #0072ff);
        color: #fff;
        font-size: 1.3rem;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 18px rgba(0,70,190,0.28);
        margin-bottom: 1rem;
    }
    .faq-item {
        border: 1.5px solid #e8edf5;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 0.75rem;
    }
    .faq-item .faq-question {
        padding: 1rem 1.25rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        transition: background 0.15s;
    }
    .faq-item .faq-question:hover {
        background: #f4f7ff;
    }
    .faq-item .faq-answer {
        padding: 0 1.25rem 1rem;
        color: #5a6475;
        font-size: 0.95rem;
        line-height: 1.65;
        display: none;
    }
    .faq-item.open .faq-answer {
        display: block;
    }
    .faq-item.open .faq-chevron {
        transform: rotate(180deg);
    }
    .faq-chevron {
        transition: transform 0.2s ease;
        color: #0046be;
        flex-shrink: 0;
        margin-left: 1rem;
    }
    .trust-badge {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.88rem;
        color: #4a5568;
        font-weight: 500;
    }
    .trust-badge i {
        color: #0046be;
        font-size: 1rem;
    }
    .cta-section {
        background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
        border-radius: 24px;
        border: 1.5px solid #c7d8f8;
    }


    