/* ================
   NEW SELLER-FOCUSED HERO
   ================ */

.hero-cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.btn-hero-primary {
    display: inline-block;
    padding: 16px 48px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-hero-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn-hero-secondary {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.nav-menu .nav-highlight {
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .hero-value-props {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 32px 0;
    }

    .value-prop {
        padding: 24px 20px;
    }

    .value-prop h3 {
        font-size: 18px;
    }

    .value-prop p {
        font-size: 13px;
    }

    .hero-cta-container {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}
