/* ===== Vendita Hero ===== */
.vendita-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.vendita-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

.vendita-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.15) 30%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.92) 100%
    );
}

.vendita-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px 60px;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.vendita-badge {
    background: rgba(139, 92, 246, 0.15) !important;
    border-color: #8b5cf6 !important;
    color: #a78bfa !important;
}

.vendita-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 16px 0;
    color: var(--color-white);
}

.vendita-hero-content > p {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--color-gray-300);
    margin-bottom: 28px;
    max-width: 560px;
}

.vendita-hero-content .hero-cta {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

/* ===== Intro ===== */
.vendita-intro {
    background: var(--color-dark);
}

.vendita-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.vendita-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray-300);
    margin-bottom: 16px;
}

.vendita-intro-text strong {
    color: var(--color-white);
}

.vendita-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vendita-trust-card {
    background: var(--color-gray-900);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 28px 24px;
    transition: var(--transition);
}

.vendita-trust-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.vendita-trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    margin-bottom: 16px;
    color: #a78bfa;
}

.vendita-trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}

.vendita-trust-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-gray-400);
}

/* ===== Offer ===== */
.vendita-offer {
    background: var(--color-dark-alt);
}

.vendita-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vendita-offer-card {
    background: var(--color-gray-900);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 36px 28px;
    transition: var(--transition);
}

.vendita-offer-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.vendita-offer-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(139, 92, 246, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.vendita-offer-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.vendita-offer-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-gray-400);
}

/* ===== Process Steps ===== */
.vendita-process {
    background: var(--color-dark);
}

.vendita-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.vendita-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    background: var(--color-gray-900);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 40px 28px;
    transition: var(--transition);
}

.vendita-step:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.vendita-step-num {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #a78bfa;
    margin: 0 auto 20px;
}

.vendita-step h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.vendita-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-gray-400);
}

.vendita-step-arrow {
    color: rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
}

/* ===== CTA ===== */
.vendita-cta-section {
    background: var(--color-dark-alt);
}

.cta-info {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--color-gray-400);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .vendita-offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vendita-hero {
        height: 60vh;
        min-height: 400px;
    }

    .vendita-hero-content {
        padding: 0 24px 40px;
    }

    .vendita-hero-content .hero-cta {
        flex-direction: column;
    }

    .vendita-hero-content .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .vendita-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vendita-offer-grid {
        grid-template-columns: 1fr;
    }

    .vendita-steps {
        flex-direction: column;
    }

    .vendita-step {
        max-width: 100%;
    }

    .vendita-step-arrow {
        transform: rotate(90deg);
    }
}
