/* ─── Global / Reset for Section ────────────────────────── */
.sell-section-wrapper {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1e293b;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ─── Top Banner ─────────────────────────────────────────── */
.sell-top-banner {
    background: #0f172a;
    color: #fff;
    padding: 12px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    z-index: 100;
    width: 100%;
}

.sell-top-banner p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.sell-top-banner-btn {
    background: #2563eb;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.sell-top-banner-btn:hover {
    background: #1d4ed8;
}

@media (max-width: 768px) {
    .sell-top-banner {
        padding: 10px 16px;
    }
    .sell-top-banner p {
        display: none;
    }
    .sell-top-banner-btn {
        width: 100%;
        text-align: center;
    }
}

/* ─── Hero Section ────────────────────────────────────────── */
.sell-hero {
    width: 100%;
    min-height: 900px;
    background: radial-gradient(circle at 50% 50%, #1e3a8a 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 24px 100px;
    box-sizing: border-box;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.sell-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.sell-hero-wrap {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ─── Badge ───────────────────────────────────────────────── */
.sell-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 40px;
    margin-top: 100px;
}

/* ─── Title ───────────────────────────────────────────────── */
.sell-title {
    font-size: clamp(38px, 6.5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 32px;
    max-width: 920px;
    color: #fff;
}

.sell-title-blue {
    color: #60a5fa;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── Description ─────────────────────────────────────────── */
.sell-desc {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.6;
    color: #94a3b8;
    max-width: 780px;
    margin: 0 0 52px;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.sell-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 80px;
}

.sell-btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.2s;
}
.sell-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.5);
}

.sell-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}
.sell-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ─── Intro Grids Section ────────────────────────────────── */
.sell-intro-grids {
    background: #fff;
    padding: 100px 24px;
    display: flex;
    justify-content: center;
    color: #1e293b;
}

.sell-content-wrap {
    max-width: 1200px;
    width: 100%;
}

/* ─── Hero Grids ─────────────────────────────────────────── */
.sell-grid-container {
    margin-bottom: 80px;
}

.sell-grid-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sell-grid-label::after {
    content: '';
    height: 1px;
    background: #e2e8f0;
    flex: 1;
}

.sell-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Dashed/Situation Cards */
.sell-situation-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.sell-situation-card:hover {
    background: #fff;
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.sell-situation-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.sell-situation-card span {
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    line-height: 1.4;
}

/* Check/Benefit Cards */
.sell-benefit-card {
    background: linear-gradient(to bottom right, #ffffff, #f0f9ff);
    border: 1px solid #bae6fd;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.sell-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.1);
    border-color: #7dd3fc;
}

.sell-benefit-icon {
    width: 56px;
    height: 56px;
    background: #2563eb;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.sell-benefit-card span {
    font-size: 16px;
    font-weight: 700;
    color: #0c4a6e;
}

/* ─── Hero Text Blocks ───────────────────────────────────── */
.sell-hero-text-block {
    background: #0f172a;
    color: #fff;
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 80px;
    text-align: center;
}

.sell-hero-text-block p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    color: #94a3b8;
}

.sell-hero-text-block strong {
    color: #60a5fa;
}

.sell-process-footer {
    text-align: center;
    font-size: 18px;
    color: #475569;
}

/* ─── Vehicle Types Grid ─────────────────────────────────── */
.sell-types-section {
    background: #f8fafc;
    padding: 80px 24px;
    display: flex;
    justify-content: center;
}

.sell-types-wrap {
    max-width: 1200px;
    width: 100%;
}

.sell-types-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 48px;
    text-align: center;
}

.sell-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.sell-type-card {
    background: #eff6ff;
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1e3a8a;
    transition: transform 0.2s;
}

.sell-type-card:hover {
    transform: translateY(-2px);
}

.sell-type-card i {
    color: #2563eb;
    font-size: 14px;
}

/* ─── Blue CTA Section ───────────────────────────────────── */
.sell-cta-blue {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 60px 24px;
    color: #fff;
    text-align: center;
}

.sell-cta-wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.sell-cta-text {
    text-align: left;
}

.sell-cta-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.sell-cta-text p {
    font-size: 18px;
    opacity: 0.9;
}

.sell-cta-btn {
    background: #fff;
    color: #1e3a8a;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sell-cta-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .sell-cta-wrap {
        flex-direction: column;
        text-align: center;
    }
    .sell-cta-text {
        text-align: center;
    }
}

/* ─── Split Promo Section ────────────────────────────────── */
.sell-promo-section {
    padding: 100px 24px;
    background: #fff;
    display: flex;
    justify-content: center;
}

.sell-promo-wrap {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sell-promo-img-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.sell-promo-img-box img {
    width: 100%;
    display: block;
}

.sell-promo-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.sell-promo-content p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
}

.sell-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.sell-feature-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.sell-feature-icon {
    width: 48px;
    height: 48px;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    font-size: 20px;
    flex-shrink: 0;
}

.sell-feature-item h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.sell-feature-item p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #64748b;
}

.sell-btn-orange {
    background: #f97316;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.sell-btn-orange:hover {
    background: #ea580c;
    padding-right: 40px;
}

@media (max-width: 900px) {
    .sell-promo-wrap {
        grid-template-columns: 1fr;
    }
}

/* ─── Trust Bar ─────────────────────────────────────────── */
.sell-trust-bar {
    background: #0f172a;
    padding: 40px 24px;
    color: #fff;
}

.sell-trust-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.sell-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sell-trust-item i {
    font-size: 24px;
    color: #2563eb;
}

.sell-trust-item div h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.sell-trust-item div p {
    margin: 2px 0 0;
    font-size: 12px;
    opacity: 0.7;
}

/* ─── Animations (High Quality Fade + Slide) ─────────────── */
.sell-afu {
    opacity: 0;
    transform: translateY(40px);
    transition: none; /* Reset for animation */
    pointer-events: none;
}

.sell-afu.active {
    pointer-events: auto;
    animation: sellReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes sellReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}
